diff options
author | David M <davidmj@users.sourceforge.net> | 2006-03-25 01:03:17 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2006-03-25 01:03:17 +0000 |
commit | 529aabd46d63b48041bde5d33fdb45bec63807cd (patch) | |
tree | f0b292aece290cfff83049e0d7f9a2f8af8579ae /phpBB/adm/style/acp_database.html | |
parent | e8e4d92d01725c32ce40e7cd2a07e3a29afc420b (diff) | |
download | forums-529aabd46d63b48041bde5d33fdb45bec63807cd.tar forums-529aabd46d63b48041bde5d33fdb45bec63807cd.tar.gz forums-529aabd46d63b48041bde5d33fdb45bec63807cd.tar.bz2 forums-529aabd46d63b48041bde5d33fdb45bec63807cd.tar.xz forums-529aabd46d63b48041bde5d33fdb45bec63807cd.zip |
- We do On-the-fly file writting for everything in backups, should speed things up
- Removed the ability to make archives for backups... Its one sql file, no need to use some heavy archive to store it...
- Made it easier to use the restore feature
- Flushed the data buffer at the end of every insert statement, this should make large tables (like posts and topics) faster to backup
- Some bug fixes :D
git-svn-id: file:///svn/phpbb/trunk@5708 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm/style/acp_database.html')
-rw-r--r-- | phpBB/adm/style/acp_database.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/adm/style/acp_database.html b/phpBB/adm/style/acp_database.html index ab59a7f843..e40909febc 100644 --- a/phpBB/adm/style/acp_database.html +++ b/phpBB/adm/style/acp_database.html @@ -11,7 +11,7 @@ <legend>{L_RESTORE_OPTIONS}</legend> <dl> <dt><label for="user">{L_SELECT_FILE}:</label></dt> - <dd><select id="file" name="file" size="10"><!-- BEGIN files --><option value="{files.FILE}"<!-- IF not files.SUPPORTED --> disabled="disabled"<!-- ENDIF --><!-- IF files.SELECTED --> selected="selected"<!-- ENDIF -->>{files.FILE}</option><!-- END files --></select></dd> + <dd><select id="file" name="file" size="10"><!-- BEGIN files --><option value="{files.FILE}"<!-- IF files.S_LAST_ROW --> selected="selected"<!-- ENDIF -->>{files.NAME}</option><!-- END files --></select></dd> </dl> </fieldset> <fieldset class="submit-buttons"> @@ -49,13 +49,13 @@ </dl> <dl> <dt><label for="user">{L_FILE_TYPE}:</label></dt> - <!-- BEGIN methods --> - <dd><input name="method" id="method" type="radio" value="{methods.TYPE}"<!-- IF methods.S_FIRST_ROW -->checked="checked"<!-- ENDIF --> /> {methods.TYPE}</dd> - <!-- END methods --> + <dd><!-- BEGIN methods --> + <input name="method" id="method" type="radio" value="{methods.TYPE}"<!-- IF methods.S_FIRST_ROW -->checked="checked"<!-- ENDIF --> /> {methods.TYPE} + <!-- END methods --></dd> </dl> <dl> <dt><label for="user">{L_ACTION}:</label></dt> - <dd><input type="radio" name="where" value="download" id="where" checked="checked" /> {L_DOWNLOAD} <input type="radio" name="where" value="store" id="where" /> {L_STORE_LOCAL}</dd> + <dd><input type="radio" name="where" value="store_and_download" id="where" checked="checked" /> {L_STORE_AND_DOWNLOAD} <input type="radio" name="where" value="store" id="where" /> {L_STORE_LOCAL} <input type="radio" name="where" value="download" id="where" /> {L_DOWNLOAD}</dd> </dl> <dl> <dt><label for="user">{L_TABLE_SELECT}:</label></dt> |