[wp-trac] [WordPress Trac] #14579: Ajaxify list-type screens in the admin
WordPress Trac
wp-trac at lists.automattic.com
Thu Aug 19 11:19:22 UTC 2010
#14579: Ajaxify list-type screens in the admin
----------------------------+-----------------------------------------------
Reporter: scribu | Owner: scribu
Type: task (blessed) | Status: accepted
Priority: normal | Milestone: 3.1
Component: Administration | Version:
Severity: normal | Keywords: has-patch needs-testing
----------------------------+-----------------------------------------------
Comment(by scribu):
It would help if you could also figure out which plugin is causing it. Add
this code to a file in your mu-plugins folder:
{{{
function scb_error_handler($errno, $errstr) {
echo $errstr;
ob_start();
debug_print_backtrace();
$out = explode( "\n#", ob_get_clean());
$out = array_slice( $out, 1);
echo '<pre>' . "\n#" . implode( "\n#", $out ) . '</pre>';
}
set_error_handler('scb_error_handler',
E_WARNING|E_ERROR|E_RECOVERABLE_ERROR|E_USER_WARNING|E_USER_ERROR);
}}}
Then, please post back the displayed backtrace on http://wp.pastebin.ca/
--
Ticket URL: <http://core.trac.wordpress.org/ticket/14579#comment:34>
WordPress Trac <http://core.trac.wordpress.org/>
WordPress blogging software
More information about the wp-trac
mailing list