WP_DEBUG is telling me:
Notice: Undefined index: no_cat_base in myplugin.php on line 20
Here's the lines of code where I'm pulling the value of "no_cat_base" from my options array called "myoptions"...
$myoptions = get_option('my_settings');
if($myoptions['no_cat_base']){//This is line 20}
Is the correct fix for this...
if ( isset($myoptions['no_cat_base'])){//do something}
action_pluginssetting from the database), I believe you have to cast it as an array?