Remove extra paren. fixes #2018
git-svn-id: http://svn.automattic.com/wordpress/trunk@3261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d77b5659aa
commit
3f1e55afc3
|
@ -780,7 +780,7 @@ class wpdbBackup {
|
|||
echo '<label style="display:block;"><input type="radio" name="deliver" value="none" /> ' . __('Save to server') . " ({$this->backup_dir})</label>";
|
||||
echo '<label style="display:block;"><input type="radio" checked="checked" name="deliver" value="http" /> ' . __('Download to your computer') . '</label>';
|
||||
echo '<div><input type="radio" name="deliver" id="do_email" value="smtp" /> ';
|
||||
echo '<label for="do_email">'.__('Email backup to:').'</label><input type="text" name="backup_recipient" size="20" value="' . get_settings('admin_email') . '" />');
|
||||
echo '<label for="do_email">'.__('Email backup to:').'</label><input type="text" name="backup_recipient" size="20" value="' . get_settings('admin_email') . '" />';
|
||||
|
||||
// Check DB dize.
|
||||
$table_status = $wpdb->get_results("SHOW TABLE STATUS FROM " . $this->backquote(DB_NAME));
|
||||
|
|
Loading…
Reference in New Issue