Backup plugin fixes.
git-svn-id: http://svn.automattic.com/wordpress/trunk@3818 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
49dc7146e4
commit
a9c6ba9391
|
@ -60,7 +60,6 @@ class wpdbBackup {
|
|||
if ( !current_user_can('import') ) die(__('You are not allowed to perform backups.'));
|
||||
add_action('init', array(&$this, 'init'));
|
||||
} else {
|
||||
if ( !current_user_can('import') ) die(__('You are not allowed to perform backups.'));
|
||||
add_action('admin_menu', array(&$this, 'admin_menu'));
|
||||
}
|
||||
}
|
||||
|
@ -883,6 +882,13 @@ class wpdbBackup {
|
|||
} // wp_cron_db_backup
|
||||
}
|
||||
|
||||
$mywpdbbackup = new wpdbBackup();
|
||||
function wpdbBackup_init() {
|
||||
global $mywpdbbackup;
|
||||
$mywpdbbackup = new wpdbBackup();
|
||||
}
|
||||
|
||||
add_action('plugins_loaded', 'wpdbBackup_init');
|
||||
|
||||
|
||||
|
||||
?>
|
||||
|
|
Loading…
Reference in New Issue