aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/convertors/functions_phpbb20.php
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/16051] Remove mysql driver as it's no longer supported in PHP >= 7.0Marc Alexander2019-10-061-22/+0
| | | | PHPBB3-16051
* [ticket/15663] Remove flash attachments supportRubén Calvo2019-05-091-4/+0
| | | | PHPBB3-15663
* [ticket/security/227] Replace ImageMagick support with thumbnail eventDerky2018-10-231-1/+0
| | | | SECURITY-227
* [ticket/14972] replace all occurrences of sizeof() with the count()rxu2018-01-011-4/+4
| | | | PHPBB3-14972
* [ticket/14739] Remove SQLite 2.8.x database driverJakub Senko2016-11-161-1/+0
| | | | PHPBB3-14739
* [ticket/10809] Remove MSSQL supportJakub Senko2016-08-021-3/+0
| | | | PHPBB3-10809
* [ticket/13454] Remove more unused variablesMarc Alexander2016-01-061-3/+3
| | | | | | This should be the last part. Off to checking if the changes were correct. PHPBB3-13454
* [ticket/13454] Remove unused variablesMarc Alexander2016-01-061-11/+5
| | | | | | This is part 5 and there is more to come. PHPBB3-13454
* [ticket/13454] Remove unused variablesMarc Alexander2016-01-061-1/+1
| | | | | | Part 4 PHPBB3-13454
* [ticket/13454] Remove unused variablesMarc Alexander2016-01-061-3/+0
| | | | | | This is part 2 of the pr. PHPBB3-13454
* [ticket/13454] Remove unused variablesMarc Alexander2016-01-061-1/+1
| | | | | | This is the first part of the changes. More to come. PHPBB3-13454
* [ticket/8708] Add f_announce_global permissionOliver Schramm2015-07-191-2/+2
| | | | PHPBB3-8708
* [ticket/10748] Replace direct creations of tools();Joas Schilling2015-02-071-1/+3
| | | | PHPBB3-10748
* [ticket/13494] Update calls to `set_config()`Gaëtan Muller2015-02-021-21/+21
| | | | PHPBB3-13494
* [ticket/13450] Type-hint return value of $phpbb_container->get()Gaëtan Muller2015-01-121-0/+1
| | | | PHPBB3-13450
* [ticket/13421] Move tools to subdirectoryJoas Schilling2014-12-061-1/+1
| | | | PHPBB3-13421
* [ticket/13065] Fix rehashing of stored password hash in phpBB2 convertor.Cesar G2014-09-141-0/+10
| | | | PHPBB3-13065
* [ticket/12446] Unnecessary db connect inphpbb_bootstrap_enabled_extsTristan Darricau2014-06-261-4/+4
| | | | PHPBB3-12446
* [ticket/12747] Drop support for FirebirdJoas Schilling2014-06-201-7/+0
| | | | PHPBB3-12747
* [ticket/12722] Add Generic.Formatting.SpaceAfterCast in the legacy rulesetTristan Darricau2014-06-161-1/+1
| | | | PHPBB3-12722
* [ticket/12594] Remove @package tags and update file headersYuriy Rusko2014-05-271-3/+7
| | | | PHPBB3-12594
* [feature/sqlite3] Add support for SQLite 3Patrick Webster2014-05-021-0/+1
| | | | | | | Minimum version requirement is 3.6.15 as that's what ships with PHP 5.3.0 when support for SQLite 3 was added. PHPBB3-9728
* [ticket/12458] Apply Squiz.WhiteSpace.SuperfluousWhitespace.* to legacy code.Andreas Fischer2014-04-291-2/+0
| | | | | | | | | * There MUST NOT be trailing whitespace at the end of lines. * There MUST NOT be whitespace before the first content of a file. * There MUST NOT be whitespace after the last content of a file. * Functions MUST NOT contain multiple empty lines in a row. PHPBB3-12458
* [ticket/11031] Correctly add groups to teampageJoas Schilling2013-11-021-0/+40
| | | | PHPBB3-11031
* [ticket/11031] Convert timezones to new 3.1 timezoneJoas Schilling2013-10-281-0/+7
| | | | PHPBB3-11031
* [ticket/11031] Fix missing variable lang_file from code conversionJoas Schilling2013-10-251-1/+2
| | | | PHPBB3-11031
* [ticket/11031] Update extension group names after converting themJoas Schilling2013-10-251-0/+48
| | | | PHPBB3-11031
* [ticket/11031] Fix conversion of topic_replies to topic_postsJoas Schilling2013-10-231-0/+9
| | | | PHPBB3-11031
* [feature/soft-delete] Append _approved to *_posts and *_topics column namesJoas Schilling2012-11-091-2/+4
| | | | PHPBB3-9567
* [feature/soft-delete] Fix convertor and one mcp issueJoas Schilling2012-10-221-1/+2
| | | | PHPBB3-9567
* [ticket/10688] Updated version to 3.1Shibu Lijack2012-04-111-1/+1
| | | | | | Replace phpBB 3.0.x to phpBB 3.1.x PHPBB-10688
* [ticket/9916] Updating header license and removing Version $Id$Unknown2011-12-311-2/+1
| | | | PHPBB3-9916
* Merge branch 'develop-olympus' into developNils Adermann2011-06-021-0/+3
|\ | | | | | | | | * develop-olympus: [ticket/10039] Added mssqlnative cases to phpBB 2.0 converter.
| * [ticket/10039] Added mssqlnative cases to phpBB 2.0 converter.Patrick Webster2011-05-131-0/+3
| | | | | | | | PHPBB3-10039
* | [ticket/9574] Remove conditional PHP<5.2 codeIgor Wiedler2010-12-281-1/+1
| | | | | | | | | | | | | | There is a large amount of conditional code for PHP < 5.2 that can be removed with phpBB 3.1. PHPBB3-9574
* | [ticket/9556] Drop php closing tags, add trailing newlineIgor Wiedler2010-11-111-2/+0
|/ | | | | | | | | | | | Closing tags converted using Oleg's script. remove-php-end-tags.py -a . Trailing newlines added using the following where $ext is file extension. find . -type f -name "*.$ext" -print | xargs printf "e %s\nw\n" | ed -s; Extensions: php, css, html, js, xml. PHPBB3-9556
* [ticket/9748] Replace <br /> before converting < and > to their entities.Richard Foote2010-07-241-1/+1
| | | | PHPBB3-9748
* also populate forum_options on conversionsMeik Sievertsen2009-08-201-15/+16
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10028 89ea8834-ac86-4346-8a33-228a782c2dd0
* Fix a problem with r9005Chris Smith2009-02-091-1/+1
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9325 89ea8834-ac86-4346-8a33-228a782c2dd0
* Ha- ndle checking for duplicate usernames in chunks (Bug #17285 - Patch by ↵Nils Adermann2008-11-241-37/+16
| | | | | | A_Jelly_Doughnut)t) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9113 89ea8834-ac86-4346-8a33-228a782c2dd0
* Correctly convert Neil's Birthday MOD to the date format used in phpBB3. #32895Chris Smith2008-10-111-1/+1
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9005 89ea8834-ac86-4346-8a33-228a782c2dd0
* Ok, story real database server info, as well as caching itMeik Sievertsen2008-09-041-1/+1
| | | | | | Store it on installation too - allows us to check the db version used on installation and used currently to warn the user about incompatibilities git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8814 89ea8834-ac86-4346-8a33-228a782c2dd0
* - Find and display colliding usernames correctly when converting from one ↵Nils Adermann2008-04-031-2/+2
| | | | | | database to another (Bug #23925) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8489 89ea8834-ac86-4346-8a33-228a782c2dd0
* Fixing converter bugs.Henry Sudhof2008-02-131-1/+1
| | | | | | | | | | | #21215 #18575 #18435 #16565 git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8379 89ea8834-ac86-4346-8a33-228a782c2dd0
* Minor - make the resulting query cleaner.Henry Sudhof2007-10-041-1/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@8134 89ea8834-ac86-4346-8a33-228a782c2dd0
* deregister globals to install tooMeik Sievertsen2007-10-041-4/+9
| | | | git-svn-id: file:///svn/phpbb/trunk@8130 89ea8834-ac86-4346-8a33-228a782c2dd0
* #14105 Note that announcements can be global - that's not a bug.Henry Sudhof2007-08-211-1/+21
| | | | git-svn-id: file:///svn/phpbb/trunk@8060 89ea8834-ac86-4346-8a33-228a782c2dd0
* err, forgot to commitMeik Sievertsen2007-07-271-11/+11
| | | | git-svn-id: file:///svn/phpbb/trunk@7961 89ea8834-ac86-4346-8a33-228a782c2dd0
* Some more quote workarounds.Henry Sudhof2007-07-181-0/+4
| | | | git-svn-id: file:///svn/phpbb/trunk@7903 89ea8834-ac86-4346-8a33-228a782c2dd0
* Weird, that should ave been in RC3.Henry Sudhof2007-07-181-0/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@7902 89ea8834-ac86-4346-8a33-228a782c2dd0