aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | [ticket/11768] Whitespace [ci skip]JoshyPHP2015-04-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11768
| * | | | | | [ticket/11768] Renamed interfacesJoshyPHP2015-04-028-137/+129
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11768
| * | | | | | [ticket/11768] Added support for creating unsafe BBCodesJoshyPHP2015-04-021-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11768
| * | | | | | [ticket/11768] Replaced extract() callsJoshyPHP2015-04-023-4/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11768
| * | | | | | [ticket/11768] Replaced some referencesJoshyPHP2015-04-021-5/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11768
| * | | | | | [ticket/11768] Removed the cached rendererJoshyPHP2015-04-022-8/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We don't need to cache an instance of the renderer, we can just instantiate it every time we need one. PHPBB3-11768
| * | | | | | [ticket/11768] Replaced FQNs in annotationsJoshyPHP2015-04-023-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11768
| * | | | | | [ticket/11768] Renamed propertyJoshyPHP2015-04-021-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11768
| * | | | | | [ticket/11768] Replaced class names in annotations with their FQNJoshyPHP2015-04-023-10/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11768
| * | | | | | [ticket/11768] Removed commentsJoshyPHP2015-04-021-3/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11768
| * | | | | | [ticket/11768] Updated renderer annotationJoshyPHP2015-04-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11768
| * | | | | | [ticket/11768] Replaced \phpbb\textformatter\parser with an interfaceJoshyPHP2015-04-022-22/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11768
| * | | | | | [ticket/11768] Renamed get_words() to get_censored_words()JoshyPHP2015-04-022-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11768
| * | | | | | [ticket/11768] Removed unused annotationsJoshyPHP2015-04-029-26/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11768
| * | | | | | [ticket/11768] Updated censor to apply to XML valuesJoshyPHP2015-04-021-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11768
| * | | | | | [ticket/11768] Fixed censored words being escaped twiceJoshyPHP2015-04-021-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11768
| * | | | | | [ticket/11768] Added methods to access the library's parser/rendererJoshyPHP2015-04-022-0/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11768
| * | | | | | [ticket/11768] Allowed text in places where text is not valid HTMLJoshyPHP2015-04-021-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11768
| * | | | | | [ticket/11768] Replaced the Censor pluginJoshyPHP2015-04-022-19/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ...with something that is run at rendering time. PHPBB3-11768
| * | | | | | [ticket/11768] Added limited support for [url] in [quote] authorJoshyPHP2015-04-021-2/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11768
| * | | | | | [ticket/11768] Updated phpbb\textformatter\s9e\factory::regenerate()JoshyPHP2015-04-023-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Returns an associative array rather than a numerically-indexed array. Feels cleaner and more extensible. PHPBB3-11768
| * | | | | | [ticket/11768] Added support for magic links that start with "www."JoshyPHP2015-04-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11768
| * | | | | | [ticket/11768] Removed unused use statementss9e2015-04-022-3/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11768
| * | | | | | [ticket/11768] Updated constructors with explicit dependenciess9e2015-04-022-9/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The trade-off is that an instance of phpbb\textformatter\s9e\factory and phpbb\textformatter\data_access is created on any page that uses the parser or the renderer, even when neither need to be regenerated. It has no measureable impact on performance and costs ~20KB of RAM. PHPBB3-11768
| * | | | | | [ticket/11768] Reorganized code for readabilitys9e2015-04-021-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | No functional change intended PHPBB3-11768
| * | | | | | [ticket/11768] Toggled Unicode modifier in relative URL filters9e2015-04-021-4/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | get_preg_expression('relative_url') returns an expression that requires it PHPBB3-11768
| * | | | | | [ticket/11768] Updated annotations to pass sniffs9e2015-04-023-9/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11768
| * | | | | | [ticket/11768] This commit integrates s9e\TextFormatters9e2015-04-029-0/+1712
| | |_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit integrates s9e\TextFormatter as outlined in http://area51.phpbb.com/phpBB/viewtopic.php?f=108&t=44467 PHPBB3-11768
* | | | | | Merge pull request #3430 from MateBartus/ticket/12466Tristan Darricau2015-04-0511-0/+2287
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | [ticket/12466] Move classes from acp_database.php to their own files
| * | | | | | [ticket/12466] Move classes from acp_database.php to their own filesMateBartus2015-02-2711-0/+2287
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Moving classes from acp_database.php to phpbb/db/extractor namespace, also into separate files * Adding DocBlocks and property visibility to classes * Removing globals from code * Passing former globals to base_extractor's constructor * Adding DB extractor as a service, also implementing the extractor interface as well as the extractor factory. PHPBB3-12466
* | | | | | | Merge branch '3.1.x'Marc Alexander2015-04-041-1/+3
|\ \ \ \ \ \ \ | | |_|/ / / / | |/| | | | |
| * | | | | | Merge pull request #3518 from marc1706/ticket/13703Marc Alexander2015-04-041-1/+3
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | [ticket/13703] Use correct avatar path for PHPBB_USE_BOARD_URL_PATH
| | * | | | | | [ticket/13703] Use correct avatar path for PHPBB_USE_BOARD_URL_PATHKevin Roy2015-04-031-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change makes the uploaded avatars use the PHPBB_USE_BOARD_URL_PATH constant, which is needed when trying to use the get_user_avatar() function in a listener for index changes. PHPBB3-13703
* | | | | | | | Merge branch '3.1.x'Marc Alexander2015-04-041-1/+3
|\ \ \ \ \ \ \ \ | |/ / / / / / / | | | | / / / / | |_|_|/ / / / |/| | | | | |
| * | | | | | [ticket/13742] Use correct avatar path for local avatarKevin Roy2015-04-031-1/+3
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Prior to this change, the path might have been incorrect when using PHPBB_USE_BOARD_URL_PATH. PHPBB3-13742
* | | | | | Merge pull request #3507 from VSEphpbb/ticket/13725Andreas Fischer2015-04-0221-34/+34
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/13725] Coding guidelines: static public * VSEphpbb/ticket/13725: [ticket/13725] Coding guidelines: static public
| * | | | | | [ticket/13725] Coding guidelines: static publicMatt Friedman2015-03-2721-34/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-13725
* | | | | | | Merge remote-tracking branch 's9e/ticket/13718'Cesar G2015-03-231-1/+1
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | | | | | | | | | | | | | | | * s9e/ticket/13718: [ticket/13718] Added missing global declaration
| * | | | | | [ticket/13718] Added missing global declarationJoshyPHP2015-03-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-13718
* | | | | | | Merge branch '3.1.x'Marc Alexander2015-03-161-1/+1
|\ \ \ \ \ \ \ | | |/ / / / / | |/| | | | |
| * | | | | | [ticket/13550] Check that the Plupload temp directory is writable before movingCesar G2015-03-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This prevents a PHP warning from being issued that results in an invalid JSON response being returned to the user. PHPBB3-13550
* | | | | | | Merge branch '3.1.x'Dhruv2015-03-141-11/+8
|\ \ \ \ \ \ \ | |/ / / / / / | | / / / / / | |/ / / / / |/| | | | | Conflicts: phpBB/phpbb/search/fulltext_native.php
| * | | | | [ticket/13674] Missing space after "if"brunoais2015-03-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-13674
| * | | | | [ticket/13674] Change MySQL native total search results calculationbrunoais2015-03-061-11/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This changes how the native FULLTEXT search calculates the total match number for MySQL. This should improve performance as there is one less query being made and it is being searched using the technique mentioned in the manual PHPBB3-13674
* | | | | | [ticket/13132] Twig: Add loops content to the root contextTristan Darricau2015-03-051-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-13132
* | | | | | Merge branch '3.1.x'Marc Alexander2015-03-051-0/+14
|\ \ \ \ \ \ | |/ / / / /
| * | | | | Merge pull request #3453 from RMcGirr83/ticket/13477Marc Alexander2015-03-051-0/+14
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | [ticket/13477] Update file cache driver for extension paths
| | * | | | | [ticket/13477] rename function and fix doc blocksRMcGirr832015-03-041-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-13477
| | * | | | | [ticket/13477] Update file cache driver for filenamesRMcGirr832015-03-031-0/+14
| | | |_|_|/ | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | Replace slashes on file name PHPBB3-13477
* | | | | | Merge pull request #3434 from nickvergessen/ticket/13647Marc Alexander2015-03-051-0/+160
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | [ticket/13647] Move FAQ page to a controller