From cc79d31345a5087279aceed461289a838c438262 Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Sat, 28 Jul 2007 17:38:39 +0000 Subject: [PATCH 01/96] tagged and up git-svn-id: file:///svn/phpbb/trunk@7976 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/install/schemas/schema_data.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/install/schemas/schema_data.sql b/phpBB/install/schemas/schema_data.sql index cce71d0593..4fb2c25bb3 100644 --- a/phpBB/install/schemas/schema_data.sql +++ b/phpBB/install/schemas/schema_data.sql @@ -206,7 +206,7 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('topics_per_page', INSERT INTO phpbb_config (config_name, config_value) VALUES ('tpl_allow_php', '0'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('upload_icons_path', 'images/upload_icons'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('upload_path', 'files'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('version', '3.0.RC4'); +INSERT INTO phpbb_config (config_name, config_value) VALUES ('version', '3.0.RC5-dev'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('warnings_expire_days', '90'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('warnings_gc', '14400'); From bb3c365f45314bbc34f3abfd626797d5ed496852 Mon Sep 17 00:00:00 2001 From: Henry Sudhof Date: Sun, 29 Jul 2007 11:22:40 +0000 Subject: [PATCH 02/96] #13863 (oops) git-svn-id: file:///svn/phpbb/trunk@7977 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/auth.php b/phpBB/includes/auth.php index 389fe99bdb..08c8c89caa 100644 --- a/phpBB/includes/auth.php +++ b/phpBB/includes/auth.php @@ -349,7 +349,7 @@ class auth // Since this function is not called that often (we are caching the data) we check for this inconsistency. $sql = 'SELECT forum_id FROM ' . FORUMS_TABLE . ' - WHERE ' . $db->sql_in_set('forum_id', array_keys($hold_ary)); + WHERE ' . $db->sql_in_set('forum_id', array_keys($hold_ary),false, true); $result = $db->sql_query($sql); $forum_ids = (isset($hold_ary[0])) ? array(0) : array(); From 2915ba1a5a4c9e543e770cc693791aa867e536e3 Mon Sep 17 00:00:00 2001 From: Henry Sudhof Date: Sun, 29 Jul 2007 11:44:31 +0000 Subject: [PATCH 03/96] minor correction git-svn-id: file:///svn/phpbb/trunk@7978 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/language/en/ucp.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpBB/language/en/ucp.php b/phpBB/language/en/ucp.php index 34040317a0..44ae3bc196 100644 --- a/phpBB/language/en/ucp.php +++ b/phpBB/language/en/ucp.php @@ -104,8 +104,8 @@ $lang = array_merge($lang, array( 'BOOKMARKS_REMOVED' => 'Bookmarks removed successfully.', 'CANNOT_EDIT_MESSAGE_TIME' => 'You can no longer edit or delete that message.', - 'CANNOT_MOVE_TO_SAME_FOLDER'=> 'Messages can not be moved to the folder you want to remove.', - 'CANNOT_MOVE_FROM_SPECIAL' => 'Messages can not be moved from the outbox.', + 'CANNOT_MOVE_TO_SAME_FOLDER'=> 'Messages cannot be moved to the folder you want to remove.', + 'CANNOT_MOVE_FROM_SPECIAL' => 'Messages cannot be moved from the outbox.', 'CANNOT_RENAME_FOLDER' => 'This folder can not be renamed.', 'CANNOT_REMOVE_FOLDER' => 'This folder can not be removed.', 'CHANGE_DEFAULT_GROUP' => 'Change default group', From a2d1a8706f822be3bc49cb96a2c8e65907b8324a Mon Sep 17 00:00:00 2001 From: Henry Sudhof Date: Sun, 29 Jul 2007 11:48:39 +0000 Subject: [PATCH 04/96] space, where art thou? git-svn-id: file:///svn/phpbb/trunk@7979 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/auth.php b/phpBB/includes/auth.php index 08c8c89caa..de9cc9bac7 100644 --- a/phpBB/includes/auth.php +++ b/phpBB/includes/auth.php @@ -349,7 +349,7 @@ class auth // Since this function is not called that often (we are caching the data) we check for this inconsistency. $sql = 'SELECT forum_id FROM ' . FORUMS_TABLE . ' - WHERE ' . $db->sql_in_set('forum_id', array_keys($hold_ary),false, true); + WHERE ' . $db->sql_in_set('forum_id', array_keys($hold_ary), false, true); $result = $db->sql_query($sql); $forum_ids = (isset($hold_ary[0])) ? array(0) : array(); From d7ae4540794708fe79fb9fff682935a3fa05d258 Mon Sep 17 00:00:00 2001 From: David M Date: Sun, 29 Jul 2007 14:44:43 +0000 Subject: [PATCH 05/96] #13862 git-svn-id: file:///svn/phpbb/trunk@7980 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/docs/CHANGELOG.html | 22 +++++- phpBB/install/database_update.php | 126 ++++++++++++++++++++++++------ 2 files changed, 123 insertions(+), 25 deletions(-) diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html index 198d21d885..a8a0349adf 100644 --- a/phpBB/docs/CHANGELOG.html +++ b/phpBB/docs/CHANGELOG.html @@ -169,6 +169,7 @@ p a {