Good plugin BUT dangerous set_include_path
Please don’t modify the ini like here
if( version_compare($wp_version, ‘2.5′, ‘>=’) ) {
/****>>>*/set_include_path( dirname(__FILE__) . PATH_SEPARATOR . get_include_path() );
/**
* This file holds all the author plugins functions
*/
require_once(dirname (__FILE__) . ‘/’ . ‘authorplugins.inc.php’);
/***>>>*/restore_include_path();
}
It introduce big troubles in server and another plug-in like post-notification or wp-ecommerce. By using absolute path, all is possible without disturbing the others and configurations.
After more than three hours of research...
Best regards
http://wordpress.org/extend/plugins/reveal-ids-for-wp-admin-25/