From 0c92a18e16c81cf2d22ad2157b0af926b86ec4ad Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Tue, 4 Mar 2003 21:02:48 +0000 Subject: [PATCH] fixed problems with updating default values within mssql (update_to_xxx), fixed html-entities match (no longer needed since the html validation changed... -> Related to bug #1267), bug #1374, #1341 - scoot and #1430 fixed too. Some updates related to 2.0.5. git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@3597 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/admin/admin_db_utilities.php | 4 +++- phpBB/docs/INSTALL.html | 26 +++++++++++++------------- phpBB/docs/README.html | 8 ++++---- phpBB/includes/functions_post.php | 2 +- phpBB/includes/page_header.php | 2 +- phpBB/includes/prune.php | 2 +- phpBB/includes/usercp_avatar.php | 4 ++-- phpBB/includes/usercp_register.php | 14 +++++++------- phpBB/install/update_to_204.php | 8 ++++---- phpBB/install/upgrade.php | 3 +-- phpBB/viewforum.php | 6 ++++-- phpBB/viewtopic.php | 2 +- 12 files changed, 42 insertions(+), 39 deletions(-) diff --git a/phpBB/admin/admin_db_utilities.php b/phpBB/admin/admin_db_utilities.php index a3dfa844dd..62deb9daad 100644 --- a/phpBB/admin/admin_db_utilities.php +++ b/phpBB/admin/admin_db_utilities.php @@ -701,6 +701,8 @@ if( isset($HTTP_GET_VARS['perform']) || isset($HTTP_POST_VARS['perform']) ) $gzipcompress = (!empty($HTTP_POST_VARS['gzipcompress'])) ? $HTTP_POST_VARS['gzipcompress'] : ( (!empty($HTTP_GET_VARS['gzipcompress'])) ? $HTTP_GET_VARS['gzipcompress'] : 0 ); + $drop = (!empty($HTTP_POST_VARS['drop'])) ? intval($HTTP_POST_VARS['drop']) : ( (!empty($HTTP_GET_VARS['drop'])) ? intval($HTTP_GET_VARS['drop']) : 0 ); + if(!empty($additional_tables)) { if(ereg(",", $additional_tables)) @@ -856,7 +858,7 @@ if( isset($HTTP_GET_VARS['perform']) || isset($HTTP_POST_VARS['perform']) ) break; case 'restore': - if(!isset($restore_start)) + if(!isset($HTTP_POST_VARS['restore_start'])) { // // Define Template files... diff --git a/phpBB/docs/INSTALL.html b/phpBB/docs/INSTALL.html index f4820c26d6..279217b7f5 100644 --- a/phpBB/docs/INSTALL.html +++ b/phpBB/docs/INSTALL.html @@ -3,7 +3,7 @@ -phpBB 2.0.4 :: Install +phpBB 2.0.5 :: Install