Tweak to avoid debug depreciation error
-
Can you update class-wpTypography.php line 707
from
add_options_page($this->pluginName, $this->pluginName, 9, strtolower($this->pluginName), array(&$this, 'get_admin_page_content'));
to
add_options_page($this->pluginName, $this->pluginName, 'manage_options', strtolower($this->pluginName), array(&$this, 'get_admin_page_content'));
to get rid of the debug depreciation error? And so the plugin repository shows you’ve updated it in the last two years.
… Also
parseText.php line 65 should beif( preg_match("@\w{500}@s", $rawText) ) {
and it should be moved to after the string validation so that is in fact a string — to line 80
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Tweak to avoid debug depreciation error’ is closed to new replies.