aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/10059] Fix two misspellings of consistent.Oleg Pudeyev2011-03-011-1/+1
| | | | PHPBB3-10059
* Merge branch 'ticket/p/10056' into develop-olympusAndreas Fischer2011-02-241-1/+1
|\ | | | | | | | | * ticket/p/10056: [ticket/10056] Corrected a typo in Firebird name.
| * [ticket/10056] Corrected a typo in Firebird name.Oleg Pudeyev2011-02-231-1/+1
| | | | | | | | PHPBB3-10056
* | [ticket/7778] Update all the schema filesErik Frèrejean2011-02-235-5/+5
| | | | | | | | | | | | Correct all the schema files to contain the new field type PHPBB3-7778
* | [ticket/7778] BBCode single limitErik Frèrejean2011-02-231-2/+9
|/ | | | | | | | | | | | | There are currently two hard limits for the number of BBCodes allowed. One is enforced by the type of the `bbcode_id` column, the other by an hard limit in `acp/acp_bbcode.php`. However this limit can never be reached due to the size of the database column. Suggested fix involves adding a new constant to define the max. number of BBCodes (as with smilies) and chaning the database column from a tinyint to a smallint to actually allow 1511 BBCodes PHPBB3-7778
* [ticket/9944] Add empty line before the while() so you can better read the codeJoas Schilling2011-02-141-0/+1
| | | | PHPBB3-9944
* [ticket/9944] Extension groups naming don't use users' language in ACPJoas Schilling2011-01-272-9/+34
| | | | | | Only happens on boards which were installed with 3.0.8 PHPBB3-9944
* [ticket/9859] Remove years in credit line from some more files.Andreas Fischer2011-01-162-2/+2
| | | | | | | | | | | | | Standard HTML output now includes: Powered by <a href="http://www.phpbb.com/">phpBB</a> &copy; phpBB Group Print output now includes: Powered by phpBB &copy; phpBB Group<br />http://www.phpbb.com/ This also fixes an inconsistency where "phpBB Group" was linked instead of "phpBB". PHPBB3-9859
* [ticket/9348] Call phpbb_set_encoding() on config value 'default_dateformat'.Richard Foote2010-12-281-1/+1
| | | | | | | | | Call phpbb_set_encoding() on 'default_dateformat' to properly re-encode non-ascii characters that might be in default_dateformat. E.g. "d M Y à H:i" PHPBB3-9348
* Merge branch 'prep-release-3.0.8' into develop-olympusNils Adermann2010-11-201-1/+7
|\ | | | | | | | | | | | | | | | | | | | | | | | | * prep-release-3.0.8: [prep-release-3.0.8] Incrementing version number to 3.0.8 and update changelog [ticket/9903] Script for detecting potentially malicious flash bbcodes [ticket/9904] Update WebPI Parameters.xml to work with WebMatrix. [ticket/9903] Fix XSS in BBcode-parser's Flash-BBcode. Conflicts: phpBB/includes/constants.php phpBB/install/database_update.php phpBB/install/schemas/schema_data.sql
| * [prep-release-3.0.8] Incrementing version number to 3.0.8 and update changelogNils Adermann2010-11-192-6/+12
| |
* | [develop-olympus] Revert accidental revert of db update lang fix and versionNils Adermann2010-11-111-2/+2
| | | | | | | | Really not my day, is it?
* | [develop-olympus] Remove accidentally added trailing newlines.Nils Adermann2010-11-111-7/+7
| |
* | [develop-olympus] Incrementing the version number to 3.0.9-dev.Nils Adermann2010-11-112-3/+3
|/
* Merge branch 'ticket/nickvergessen/9140' into develop-olympusNils Adermann2010-11-101-2/+2
|\ | | | | | | | | * ticket/nickvergessen/9140: [ticket/9140] Check current board version in incremental update packages
| * [ticket/9140] Check current board version in incremental update packagesJoas Schilling2010-11-101-2/+2
| | | | | | | | | | | | | | | | | | | | We need to use $this->current_version in this case instead of $config['version']. Otherwise the message will be displayed after the database got updated from database_update.php. Using PHPBB_VERSION from includes/constants.php is not the right selection either, because than the message is displayed after the files got updated and are checked one last time. PHPBB3-9140
* | [ticket/9891] Updater drops language-selection after database-updateJoas Schilling2010-11-101-1/+1
|/ | | | PHPBB3-9891
* Merge branch 'ticket/nickvergessen/9886' into develop-olympusNils Adermann2010-11-101-2/+1
|\ | | | | | | | | * ticket/nickvergessen/9886: [ticket/9886] Update fails on PostgreSQL because of an error in _add_module
| * [ticket/9886] Update fails on PostgreSQL because of an error in _add_moduleJoas Schilling2010-11-091-2/+1
| | | | | | | | PHPBB3-9886
* | [ticket/9884] Reduce queue interval to 60 seconds, email package size to 20Igor Wiedler2010-11-102-2/+13
| | | | | | | | PHPBB3-9884
* | Merge branch 'ticket/nickvergessen/9888' into develop-olympusAndreas Fischer2010-11-081-40/+51
|\ \ | | | | | | | | | | | | * ticket/nickvergessen/9888: [ticket/9888] Update fails when Bing [Bot] was already added to the users table
| * | [ticket/9888] Update fails when Bing [Bot] was already added to the users tableJoas Schilling2010-11-081-40/+51
| |/ | | | | | | | | | | Added a check whether the user already exists before we try to add it. PHPBB3-9888
* | Merge branch 'ticket/bantu/9885' into develop-olympusNils Adermann2010-11-081-24/+46
|\ \ | | | | | | | | | | | | * ticket/bantu/9885: [ticket/9885] Fix extension group name updater. Loop through all languages.
| * | [ticket/9885] Fix extension group name updater. Loop through all languages.Andreas Fischer2010-11-081-24/+46
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix a regression introduced by 58dc5a191c0203ea6d98c37df26b0830b3bf8203. The problem is that $user->add_lang() includes language strings from the board root folder instead of the update folder. Because the database updater is run first, the root folder files have not been upgrade yet. Thus, the language strings we're looking for cannot be found. Since the language strings we are looking for have been moved from the install.php language file to acp/attachments.php it should be possible to always find them in either file. When there is an acp/attachments.php file in the update package, it can also be used. We now also loop through all the installed languages as well, because the board could have been installed in a language other than the admin's current language. PHPBB3-9885 PHPBB3-7717
* | [develop-olympus] Bumping version number for 3.0.8-RC1.Nils Adermann2010-11-083-4/+4
|/
* Merge branch 'ticket/igorw/9807' into develop-olympusNils Adermann2010-10-231-0/+8
|\ | | | | | | | | | | * ticket/igorw/9807: [ticket/9807] Update existing module permissions in database [ticket/9807] Hide avatar tab in UCP when avatars are disabled
| * [ticket/9807] Update existing module permissions in databaseIgor Wiedler2010-10-211-0/+8
| | | | | | | | PHPBB3-9807
* | Merge branch 'ticket/bantu/9091' into develop-olympusIgor Wiedler2010-09-162-0/+2
|\ \ | | | | | | | | | | | | * ticket/bantu/9091: [ticket/9091] Extract IPv4 address from addresses mapped into IPv6.
| * | [ticket/9091] Extract IPv4 address from addresses mapped into IPv6.Andreas Fischer2010-07-232-0/+2
| | | | | | | | | | | | PHPBB3-9091
* | | Merge branch 'ticket/bantu/9613' into develop-olympusIgor Wiedler2010-09-162-0/+4
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | * ticket/bantu/9613: [ticket/9613] Slightly update language strings. [ticket/9613] Fix missing database part for unread posts search load switch. [ticket/9613] Implement a load switch for unread posts search feature.
| * | | [ticket/9613] Fix missing database part for unread posts search load switch.rxu2010-08-292-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | A record for load_unreads_search parameter had to be added to CONFIG_TABLE. PHPBB3-9613
* | | | Merge branch 'ticket/bantu/9748' into develop-olympusIgor Wiedler2010-09-121-1/+1
|\ \ \ \ | |_|_|/ |/| | | | | | | | | | | * ticket/bantu/9748: [ticket/9748] Replace <br /> before converting < and > to their entities.
| * | | [ticket/9748] Replace <br /> before converting < and > to their entities.Richard Foote2010-07-241-1/+1
| | |/ | |/| | | | | | | PHPBB3-9748
* | | [ticket/8944] Add index length to CREATE INDEX for MySQL4 in database_updateIgor Wiedler2010-09-031-2/+18
| |/ |/| | | | | | | | | | | | | Fixes following SQL error when updating the database to 3.0.6. BLOB column 'post_username' used in key specification without a key length PHPBB3-8944
* | Merge branch 'ticket/nickvergessen/9519' into develop-olympusAndreas Fischer2010-08-282-3/+3
|\ \ | | | | | | | | | | | | | | | | | | | | | * ticket/nickvergessen/9519: [ticket/9519] Replace remaining is_writable() calls with phpbb_is_writable(). [ticket/9519] Replace remaining is_writable() calls with phpbb_is_writable(). [ticket/9519] Replace remaining is_writable() calls with phpbb_is_writable(). [ticket/9519] Replace remaining is_writable() calls with phpbb_is_writable().
| * | [ticket/9519] Replace remaining is_writable() calls with phpbb_is_writable().Joas Schilling2010-08-131-1/+1
| | | | | | | | | | | | | | | | | | includes/functions_convert.php and install/install_convert.php tested by Dicky. PHPBB3-9519
| * | [ticket/9519] Replace remaining is_writable() calls with phpbb_is_writable().Joas Schilling2010-08-101-2/+2
| |/ | | | | | | | | | | | | acm_memory.php is untested. install/install_convert.php and includes/functions_convert.php are going to be tested and committed afterwards. PHPBB3-9519
* | Merge branch 'ticket/bantu/9167' into develop-olympusJosh Woody2010-08-191-0/+46
|\ \ | |/ |/| | | | | | | | | | | | | * ticket/bantu/9167: [ticket/9167] Detect and remove any dead left over shadow topics on update. [ticket/9167] Remove shadow topics from remaining forums when deleting a forum Conflicts: phpBB/install/database_update.php
| * [ticket/9167] Detect and remove any dead left over shadow topics on update.Andreas Fischer2010-06-111-0/+45
| | | | | | | | PHPBB3-9167
* | Merge branch 'ticket/naderman/9140' into develop-olympusAndreas Fischer2010-07-121-0/+11
|\ \ | | | | | | | | | | | | * ticket/naderman/9140: [ticket/9140] Check current board version in incremental update packages
| * | [ticket/9140] Check current board version in incremental update packagesGabriel Vazquez2010-07-121-0/+11
| |/ | | | | | | | | | | | | | | Since we do not want to limit the updater functionality we only display a prominent warning when the current board version does not match the version the update files are meant to update from. PHPBB3-9140
* | Merge branch 'ticket/jellydoughnut/9637' into develop-olympusAndreas Fischer2010-07-111-1/+1
|\ \ | | | | | | | | | | | | * ticket/jellydoughnut/9637: [ticket/9637] Do not cache SQL server version in all cases
| * | [ticket/9637] Do not cache SQL server version in all casesJosh Woody2010-07-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Because the existing cache is global, there is no way to differentiate between each of two databases which may be two different DBAL objects pointing to servers with wildly different versions of an RDBMS. phpBB only has this situation in the UCF, thus only one file changed outside the DBAL. I have added a second optional parameter, $use_cache to each of the implementations of dbal::sql_server_info() PHPBB3-9637
* | | Merge branch 'ticket/jellydoughnut/9690' into develop-olympusAndreas Fischer2010-07-082-0/+53
|\ \ \ | | | | | | | | | | | | | | | | * ticket/jellydoughnut/9690: [ticket/9690] Add forthcoming Bing Bot to list of recognized bots
| * | | [ticket/9690] Add forthcoming Bing Bot to list of recognized botsJosh Woody2010-07-072-0/+53
| | |/ | |/| | | | | | | | | | | | | Microsoft will rename MSN Bot to Bing Bot later this year, and change its user agent. This updates phpBB to be aware of Bing Bot PHPBB3-9690
* | | Merge branch 'ticket/nickvergessen/9578' into develop-olympusAndreas Fischer2010-07-081-0/+13
|\ \ \ | | | | | | | | | | | | | | | | * ticket/nickvergessen/9578: [ticket/9578] ACP Posting tab is missing "Post settings" module.
| * | | [ticket/9578] ACP Posting tab is missing "Post settings" module.Joas Schilling2010-05-281-0/+13
| |/ / | | | | | | | | | PHPBB3-9578
* | | [ticket/9628] _add_module 'after'-parameter does not work correctly.Joas Schilling2010-05-281-1/+0
|/ / | | | | | | | | | | The modules were grouped by left_id so num_modules is always one (hopefully), but the number of rows is the actual value we'd like to know. Removing the GROUP BY resolves the issue. PHPBB3-9628
* | Merge branch 'ticket/bantu/9545' into develop-olympusNils Adermann2010-05-161-1/+1
|\ \ | |/ |/| | | | | * ticket/bantu/9545: [ticket/9545] Initial forum should display active topics by default.
| * [ticket/9545] Initial forum should display active topics by default.Andreas Fischer2010-05-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | The initial forum 'Your first forum' should show topics (especially the 'Welcome to phpBB3' topic) in the active topics list after installing phpBB because this is the default setting for new forums (but not categories). The default database column value for forum_flags is 32 = FORUM_FLAG_POST_REVIEW, we therefore have to explicitly set forum_flags to FORUM_FLAG_POST_REVIEW + FORUM_FLAG_ACTIVE_TOPICS = 48 for this forum. PHPBB3-9545