Title: Resolving the PHP warning with WP_DEBUG on
Last modified: May 26, 2017

---

# Resolving the PHP warning with WP_DEBUG on

 *  Resolved [Zade](https://wordpress.org/support/users/nothin7/)
 * (@nothin7)
 * [9 years ago](https://wordpress.org/support/topic/resolving-the-php-warning-with-wp_debug-on/)
 * If you turn on debugging, you’ll see this on all pages:
 * Strict Standards: Declaration of rowbory_qep_Walker::start_el() should be compatible
   with Walker_PageDropdown::start_el(&$output, $page, $depth = 0, $args = Array,
   $id = 0) in /wp-content/plugins/quick-edit-popup/quick-edit-pages.php on line
   156
 * To resolve, change line 132 of quick-edit-pages.php from:
 * function start_el(&$output, $page, $depth, $args) {
 * to:
 * function start_el(&$output, $page, $depth = 0, $args = array(), $id = 0) {

Viewing 1 replies (of 1 total)

 *  Thread Starter [Zade](https://wordpress.org/support/users/nothin7/)
 * (@nothin7)
 * [9 years ago](https://wordpress.org/support/topic/resolving-the-php-warning-with-wp_debug-on/#post-9169366)
 * With debugging on, you’ll also see this on the admin side:
 * Strict Standards: call_user_func_array() expects parameter 1 to be a valid callback,
   non-static method rowbory_qep::generate_popup() should not be called statically
   in /wp-includes/class-wp-hook.php on line 298
 * To resolve, change line 68 of quick-edit-pages.php from:
 * function generate_popup() {
 * to:
 * static function generate_popup() {

Viewing 1 replies (of 1 total)

The topic ‘Resolving the PHP warning with WP_DEBUG on’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/quick-edit-popup_705a5b.svg)
 * [Quick Edit Page Popup Menu](https://wordpress.org/plugins/quick-edit-popup/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/quick-edit-popup/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/quick-edit-popup/)
 * [Active Topics](https://wordpress.org/support/plugin/quick-edit-popup/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/quick-edit-popup/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/quick-edit-popup/reviews/)

## Tags

 * [update needed](https://wordpress.org/support/topic-tag/update-needed/)

 * 1 reply
 * 1 participant
 * Last reply from: [Zade](https://wordpress.org/support/users/nothin7/)
 * Last activity: [9 years ago](https://wordpress.org/support/topic/resolving-the-php-warning-with-wp_debug-on/#post-9169366)
 * Status: resolved