Bug in plugin: error when saving changes to Pages
-
i am seeing errors from this plugin when editing Pages. only happens when this plugin is loaded and points to specific lines within your validate_plugin_settings() function. the change below seems to fix. can you incorporate same or similar in future updates?
change this:
public function validate_plugin_settings(){ if(!empty($_POST)){
to this:
public function validate_plugin_settings(){ if(!empty($_POST)){ if (!isset ($_POST[$this->db_prefix.'reset'])) return; if (!isset ($_POST[$this->db_prefix.'total_instances'])) return;
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Bug in plugin: error when saving changes to Pages’ is closed to new replies.