justintadlock / cleaner-gallery

Official repository for the Cleaner Gallery WordPress plugin.
GNU General Public License v2.0
23 stars 11 forks source link

Notice of invalid key sometimes being thrown #11

Closed ddelrio1986 closed 6 years ago

ddelrio1986 commented 8 years ago

The cleaner_gallery_get_setting function will sometimes throw a notice if you're trying to access a $option that is not found in the $settings array returned from the get_option function.

ddelrio1986 commented 8 years ago

2 is for this issue.

justintadlock commented 8 years ago

In cleaner_gallery_get_setting(), I need to do something like this:

$settings = get_option( 'cleaner_gallery_settings', cleaner_gallery_default_settings() );

$settings = wp_parse_args( $settings, cleaner_gallery_default_settings() );