In order to generate these warnings, WP_DEBUG must be set to true
The following changes need to be made in order to avoid a slew of "undefined index" warnings in the admin:
- In framework/theme_plugins/kriesi_option_pages/kriesi_option_pages.php:
- On line 33: replace
if($_GET['page'] == $this->pageinfo['filename'])withif(isset($_GET['page']) && $_GET['page'] == $this->pageinfo['filename']) - On line 85: replace
if($option['std'])withif(isset($option['std']) && $option['std'])
- On line 33: replace
- In widgets.php:
- On line 69, wrap
$dynamic_widgets = explode(',',$k_option['includes']['multi_widget_final']);and theforeachfollowing it with an if check forisset($k_option['includes']['multi_widget_final']) - On line 87, wrap
$dynamic_widgets_cat = explode(',',$k_option['includes']['multi_widget_cat_final']);and theforeachfollowing it with an if check forisset($k_option['includes']['multi_widget_cat_final'])
- On line 69, wrap
There are also several deprecation warnings concerning the usage of has_cap, which I haven't quite pinned down yet.














