aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | | | | [ticket/11663] Add the doc block about the return value.brunoais2013-08-141-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | generate_text_for_storage does not return anything, all returned values are outputted using the parameters so this uses the returned value with the same idea as many C language functions where the returned value is if all went well or not and if it didn't what went wrong. PHPBB3-11663
| * | | | | | | | | [ticket/11663] Make generate_text_for_storage return the errors.brunoais2013-08-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | generate_text_for_storage does not return anything, all returned values are outputted using the parameters so this uses the returned value with the same idea as many C language functions where the returned value is if all went well or not and if it didn't what went wrong. PHPBB3-11663
* | | | | | | | | | Merge pull request #1810 from nickvergessen/ticket/11031Nils Adermann2013-11-024-11/+172
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Ticket/11031 Bring phpBB2 converter up to speed with 3.1 changes
| * | | | | | | | | | [ticket/11031] Convert user notification options with default settingsJoas Schilling2013-11-021-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11031
| * | | | | | | | | | [ticket/11031] Correctly add groups to teampageJoas Schilling2013-11-023-2/+78
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11031
| * | | | | | | | | | [ticket/11031] Fix group legend positionJoas Schilling2013-10-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11031
| * | | | | | | | | | [ticket/11031] Convert timezones to new 3.1 timezoneJoas Schilling2013-10-282-2/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11031
| * | | | | | | | | | [ticket/11031] Fix missing variable lang_file from code conversionJoas Schilling2013-10-251-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11031
| * | | | | | | | | | [ticket/11031] Correctly set topic and post visibilityJoas Schilling2013-10-251-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11031
| * | | | | | | | | | [ticket/11031] Update extension group names after converting themJoas Schilling2013-10-252-0/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11031
| * | | | | | | | | | [ticket/11031] Fix conversion of topic_replies to topic_postsJoas Schilling2013-10-232-3/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11031
| * | | | | | | | | | [ticket/11031] Fix container construction and missing objectsJoas Schilling2013-10-231-2/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11031
* | | | | | | | | | | Merge remote-tracking branch 'Marc/ticket/11983' into developJoas Schilling2013-11-021-0/+1
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Marc/ticket/11983: [ticket/11983] Add missing argument to docblock in ucp_notifications
| * | | | | | | | | | | [ticket/11983] Add missing argument to docblock in ucp_notificationsMarc Alexander2013-11-021-0/+1
|/ / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The argument $subscriptions was not documented in the docblock of the method output_notification_types() until now. PHPBB3-11983
* | | | | | | | | | | Merge pull request #1839 from bantu/task/code-snifferNils Adermann2013-11-01206-1862/+203
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | More PHP Code Sniffer rules
| * | | | | | | | | | | [task/code-sniffer] Remove class result_mssqlnative.Andreas Fischer2013-10-311-169/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11980
| * | | | | | | | | | | [task/code-sniffer] Completely ignore database_update.php.Andreas Fischer2013-10-301-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11980
| * | | | | | | | | | | [task/code-sniffer] Replace spaces with tabs.Andreas Fischer2013-10-3017-150/+154
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11980
| * | | | | | | | | | | [task/code-sniffer] Remove the IN_PHPBB check side-effect from class files.Andreas Fischer2013-10-30192-1537/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11980
| * | | | | | | | | | | [task/code-sniffer] Add PSR1.Files.SideEffects.FoundWithSymbolsAndreas Fischer2013-10-301-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11980
| * | | | | | | | | | | [task/code-sniffer] Add PSR1.Classes.ClassDeclaration.MissingNamespaceAndreas Fischer2013-10-301-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11980
| * | | | | | | | | | | [task/code-sniffer] Add Generic.WhiteSpace.DisallowSpaceIndentAndreas Fischer2013-10-301-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11980
| * | | | | | | | | | | [task/code-sniffer] Add Generic.Functions.CallTimePassByReferenceAndreas Fischer2013-10-301-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11980
| * | | | | | | | | | | [task/code-sniffer] Add Generic.Formatting.DisallowMultipleStatementsAndreas Fischer2013-10-301-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11980
| * | | | | | | | | | | [task/code-sniffer] Add OneClassPerFile and OneInterfacePerFile.Andreas Fischer2013-10-301-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11980
| * | | | | | | | | | | [task/code-sniffer] Add Generic.CodeAnalysis.UselessOverridingMethodAndreas Fischer2013-10-301-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11980
| * | | | | | | | | | | [task/code-sniffer] Add Generic.CodeAnalysis.ForLoopShouldBeWhileLoopAndreas Fischer2013-10-291-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11980
| * | | | | | | | | | | [task/code-sniffer] Do not abort immediately on PHP Code Sniffer failure.Andreas Fischer2013-10-291-2/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11980
| * | | | | | | | | | | [task/code-sniffer] Fix argument list spacing.Andreas Fischer2013-10-294-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11980
| * | | | | | | | | | | [task/code-sniffer] Check function/method argument list spacing.Andreas Fischer2013-10-291-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11980
* | | | | | | | | | | | Merge pull request #1844 from mvinny/ticket/11992Nathan Guse2013-10-311-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | ticket/11992
| * | | | | | | | | | | | [ticket/11992] Fix Users with most Warnings blockMarcus Vinny2013-10-311-1/+1
|/ / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11992
* | | | | | | | | | | | Merge remote-tracking branch 'prototech/ticket/11987' into developAndreas Fischer2013-10-315-7/+6
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * prototech/ticket/11987: [ticket/11987] Add {ADMIN_ROOT_PATH}. [ticket/11987] Replace {PHPBB_ROOT_PATH} with {ROOT_PATH}. [ticket/11987] Change {ROOT_PATH} to point to board root.
| * | | | | | | | | | | | [ticket/11987] Add {ADMIN_ROOT_PATH}.Cesar G2013-10-301-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11987
| * | | | | | | | | | | | [ticket/11987] Replace {PHPBB_ROOT_PATH} with {ROOT_PATH}.Cesar G2013-10-304-6/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11987
| * | | | | | | | | | | | [ticket/11987] Change {ROOT_PATH} to point to board root.Cesar G2013-10-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11987
* | | | | | | | | | | | | Merge remote-tracking branch 'prototech/ticket/11991' into developAndreas Fischer2013-10-311-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * prototech/ticket/11991: [ticket/11991] Fix incorrect class name for report_post_closed notification.
| * | | | | | | | | | | | [ticket/11991] Fix incorrect class name for report_post_closed notification.Cesar G2013-10-301-1/+1
|/ / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11991
* | | | | | | | | | | | Merge remote-tracking branch 'nickvergessen/ticket/11974' into developDhruv2013-10-302-10/+436
|\ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|/ / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # By Joas Schilling # Via Joas Schilling * nickvergessen/ticket/11974: [ticket/11974] Fix timezone names with underscores [ticket/11974] Translate all timezones
| * | | | | | | | | | | [ticket/11974] Fix timezone names with underscoresJoas Schilling2013-10-271-59/+59
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11974
| * | | | | | | | | | | [ticket/11974] Translate all timezonesJoas Schilling2013-10-272-10/+436
| | |_|_|_|_|/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11974
* | | | | | | | | | | Merge remote-tracking branch 'prototech/ticket/11986' into developAndreas Fischer2013-10-291-1/+1
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * prototech/ticket/11986: [ticket/11986] Fix undefined index: poster_id in file.php.
| * | | | | | | | | | | [ticket/11986] Fix undefined index: poster_id in file.php.Cesar G2013-10-291-1/+1
|/ / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11986
* | | | | | | | | | | Merge pull request #1835 from bantu/task/code-snifferNils Adermann2013-10-284-20/+20
|\ \ \ \ \ \ \ \ \ \ \ | | |/ / / / / / / / / | |/| | | | | | | | | [task/code-sniffer] Require PHP Code Sniffer to pass
| * | | | | | | | | | [task/code-sniffer] Cleanup code sniffer ruleset files.Andreas Fischer2013-10-292-5/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11980
| * | | | | | | | | | [task/code-sniffer] Reorganise .travis.ymlAndreas Fischer2013-10-291-5/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11980
| * | | | | | | | | | [task/code-sniffer] Check phpBB/phpbb first. This is where new files go.Andreas Fischer2013-10-291-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11980
| * | | | | | | | | | [task/code-sniffer] Require code sniffer to pass on Travis CI.Andreas Fischer2013-10-292-4/+4
|/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11980
* | | | | | | | | | Merge remote-tracking branch 'marc1706/ticket/11981' into developAndreas Fischer2013-10-2930-65/+70
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * marc1706/ticket/11981: [ticket/11981] Fix code sniffer complaints
| * | | | | | | | | | [ticket/11981] Fix code sniffer complaintsMarc Alexander2013-10-2830-65/+70
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11981