Zeile 6 | Zeile 6 |
---|
* Website: http://www.mybboard.net * License: http://www.mybboard.net/about/license *
|
* Website: http://www.mybboard.net * License: http://www.mybboard.net/about/license *
|
* $Id: backupdb.php 4101 2008-08-10 18:52:38Z Tikitiki $
| * $Id: backupdb.php 4337 2009-03-30 01:21:51Z Tikitiki $
|
*/
// Disallow direct access to this file for security reasons
| */
// Disallow direct access to this file for security reasons
|
Zeile 141 | Zeile 141 |
---|
if($mybb->input['method'] == 'disk') {
|
if($mybb->input['method'] == 'disk') {
|
$file = MYBB_ADMIN_DIR.'backups/backup_'.substr(md5($mybb->user['uid'].TIME_NOW.random_str()), 0, 10);
| $file = MYBB_ADMIN_DIR.'backups/backup_'.substr(md5($mybb->user['uid'].TIME_NOW), 0, 10).random_str(54);
|
if($mybb->input['filetype'] == 'gzip') {
| if($mybb->input['filetype'] == 'gzip') {
|
Zeile 160 | Zeile 160 |
---|
} else {
|
} else {
|
$file = 'backup_'.substr(md5($mybb->user['uid'].TIME_NOW.random_str()), 0, 10);
| $file = 'backup_'.substr(md5($mybb->user['uid'].TIME_NOW), 0, 10).random_str(54);
|
if($mybb->input['filetype'] == 'gzip') { if(!function_exists('gzopen')) // check zlib-ness
| if($mybb->input['filetype'] == 'gzip') { if(!function_exists('gzopen')) // check zlib-ness
|
Zeile 288 | Zeile 288 |
---|
exit; }
|
exit; }
|
$page->extra_header = " <script type=\"text/javascript\" language=\"Javascript\">
| $page->extra_header = " <script type=\"text/javascript\">
|
function changeSelection(action, prefix) { var select_box = document.getElementById('table_select');
| function changeSelection(action, prefix) { var select_box = document.getElementById('table_select');
|