aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | [ticket/12391] Assign variables to core.posting_modify_template_varsn-aleha2014-04-141-3/+15
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Assign variables to event "core.posting_modify_template_vars". Also, fix a couple of typos. PHPBB3-12391
* | | | | | Merge pull request #2304 from n-aleha/ticket/12191Joas Schilling2014-04-161-0/+12
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/12191] Move notification options to bottom while installing * n-aleha/ticket/12191: [ticket/12191] Move notification options to bottom while installing
| * | | | | | [ticket/12191] Move notification options to bottom while installingn-aleha2014-04-141-0/+12
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Move "ucp>board preferences>edit notification options" to bottom while installing. PHPBB3-12191
* | | | | | Merge pull request #2301 from rxu/ticket/12401Joas Schilling2014-04-161-1/+4
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/12401] Add $topic_data array to core.viewtopic_modify_post_row event * rxu/ticket/12401: [ticket/12401] Pass more data to core.viewtopic_modify_post_row event
| * | | | | | [ticket/12401] Pass more data to core.viewtopic_modify_post_row eventrxu2014-04-131-1/+4
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | $topic_data array is used in viewtopic.php to populate $post_row template block array data. Although $topic_data is not being passed to core.viewtopic_modify_post_row event for modifying/adding $post_row data in it. So, pass this array to the event. Also, total_posts is added. PHPBB3-12401
* | | | | | Merge pull request #2300 from rxu/ticket/12400Joas Schilling2014-04-161-0/+12
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/12400] Add viewforum event to modify topics data * rxu/ticket/12400: [ticket/12400] Add viewforum event to modify topics data
| * | | | | | [ticket/12400] Add viewforum event to modify topics datarxu2014-04-131-0/+12
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The event allows extensions to use and/or modify topics list and/or topics data before dumping out the viewforum page. For extensions which operate with viewforum page, f.e. if the topics list and data is needed to retrieve, add, modify additional topics info before the output loop. PHPBB3-12400
* | | | | | Merge branch 'develop-olympus' into develop-ascraeusAndreas Fischer2014-04-151-2/+2
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/12397] Fix sql_unique_index_exists doc block
| * \ \ \ \ \ Merge pull request #2310 from n-aleha/ticket/12397Andreas Fischer2014-04-151-2/+2
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/12397] Fix sql_unique_index_exists doc block * n-aleha/ticket/12397: [ticket/12397] Fix sql_unique_index_exists doc block
| | * | | | | | [ticket/12397] Fix sql_unique_index_exists doc blockn-aleha2014-04-161-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | db_tools::sql_unique_index_exists() searches for unique indexes but not primary key indexes. PHPBB3-12397
* | | | | | | | Merge branch 'develop-olympus' into develop-ascraeusJoas Schilling2014-04-153-15/+28
|\ \ \ \ \ \ \ \ | |/ / / / / / / | | | | / / / / | |_|_|/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/10423] Replace foreach with function in viewtopic.php [ticket/10423] Remove unnecessary include in test [ticket/10423] Match multiple wildcards [ticket/10423] Move code into a function and add tests for it [ticket/10423] Remove * from search or highlight string
| * | | | | | Merge pull request #2195 from Elsensee/ticket/10423Joas Schilling2014-04-153-15/+28
| |\ \ \ \ \ \ | | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/10423] Remove * from search or highlight string * Elsensee/ticket/10423: [ticket/10423] Replace foreach with function in viewtopic.php [ticket/10423] Remove unnecessary include in test [ticket/10423] Match multiple wildcards [ticket/10423] Move code into a function and add tests for it [ticket/10423] Remove * from search or highlight string
| | * | | | | [ticket/10423] Replace foreach with function in viewtopic.phpOliver Schramm2014-04-151-12/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10423
| | * | | | | [ticket/10423] Match multiple wildcardsOliver Schramm2014-04-131-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Multiple wildcards are removed from the string if there is no word before or after them. If there is a word before or after them, they are just replaced with a single one. PHPBB3-10423
| | * | | | | [ticket/10423] Move code into a function and add tests for itOliver Schramm2014-04-133-5/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10423
| | * | | | | [ticket/10423] Remove * from search or highlight stringOliver Schramm2014-03-282-5/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10423
* | | | | | | Merge branch 'ticket/lucifer4o/12344' into develop-ascraeusJoas Schilling2014-04-151-1/+13
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * ticket/lucifer4o/12344: [ticket/12344] Add core.pm_submit_before to function submit_pm
| * | | | | | | [ticket/12344] Add core.pm_submit_before to function submit_pmlucifer4o2014-04-151-1/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12344
* | | | | | | | Merge pull request #2286 from nickvergessen/ticket/12388Andreas Fischer2014-04-151-0/+4
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/12388] Fix translation of log entries without additional log data * nickvergessen/ticket/12388: [ticket/12388] Add tests for lang() use on log actions without data [ticket/12388] Fix translation of log entries without additional log data
| * | | | | | | [ticket/12388] Fix translation of log entries without additional log dataJoas Schilling2014-04-111-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12388
* | | | | | | | Merge remote-tracking branch 'marc/ticket/12004' into develop-ascraeusJoas Schilling2014-04-141-0/+10
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * marc/ticket/12004: [ticket/12004] Support empty routes to app.php/ in path_helper
| * | | | | | | | [ticket/12004] Support empty routes to app.php/ in path_helperMarc Alexander2014-04-111-0/+10
| | |_|_|_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The symfony routing component allows us to use the path "/" for routes. Therefore, we should be able to use example.com/app.php/ for controllers. However, this currently does not properly work. The method get_web_root_path incorrectly returns phpbb_root_path. Therefore, paths to images or files are broken. PHPBB3-12004
* | | | | | | | Merge remote-tracking branch 'marc/ticket/12372' into develop-ascraeusJoas Schilling2014-04-1419-148/+73
|\ \ \ \ \ \ \ \ | |_|_|_|_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * marc/ticket/12372: [ticket/12372] Use $() instead of jQuery() in core.js for toggleDisplay [ticket/12372] Use admin.js $(document).ready for hiding questionnaire details [ticket/12372] Rename JS function dE() to phpbb.toggleDisplay() [ticket/12372] Move dE() function core.js [ticket/12372] Unify definition of function dE() across all files [ticket/12372] Use jQuery in javascript dE() function
| * | | | | | | [ticket/12372] Use $() instead of jQuery() in core.js for toggleDisplayMarc Alexander2014-04-111-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12372
| * | | | | | | [ticket/12372] Use admin.js $(document).ready for hiding questionnaire detailsMarc Alexander2014-04-112-7/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12372
| * | | | | | | [ticket/12372] Rename JS function dE() to phpbb.toggleDisplay()Marc Alexander2014-04-0713-49/+49
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12372
| * | | | | | | [ticket/12372] Move dE() function core.jsMarc Alexander2014-04-077-112/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12372
| * | | | | | | [ticket/12372] Unify definition of function dE() across all filesMarc Alexander2014-04-074-38/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12372
| * | | | | | | [ticket/12372] Use jQuery in javascript dE() functionMarc Alexander2014-04-071-7/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12372
* | | | | | | | Merge remote-tracking branch 'marc/ticket/12211' into develop-ascraeusJoas Schilling2014-04-121-1/+1
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * marc/ticket/12211: [ticket/12211] Do not run attachment file names twice through htmlspecialchars
| * | | | | | | | [ticket/12211] Do not run attachment file names twice through htmlspecialcharsMarc Alexander2014-04-111-1/+1
| | |_|_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upload filenames are already processed via htmlspecialchars in the type_cast_helper of the new request class. There is no need to run it through htmlspecialchars() again in the filespec class. PHPBB3-12211
* | | | | | | | Merge remote-tracking branch 'VarunAgw/ticket/12351' into develop-ascraeusCesar G2014-04-114-10/+10
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | * VarunAgw/ticket/12351: [ticket/12351] Add loading indicator to links that are missing it.
| * | | | | | | [ticket/12351] Add loading indicator to links that are missing it.Varun Agrawal2014-04-124-10/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When you click on the link, the turning circle is missing, so you don't know whether it is actually doing something or not, until the response is served. PHPBB3-12351
* | | | | | | | Merge remote-tracking branch 'rxu/ticket/12336' into develop-ascraeusJoas Schilling2014-04-111-1/+15
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * rxu/ticket/12336: [ticket/12336] Add functions_module.php core event
| * | | | | | | | [ticket/12336] Add functions_module.php core eventrxu2014-04-071-1/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add functions_module.php core event to allow adjusting parameters for custom ACP, MCP, UCP modules (location: function list_modules()). PHPBB3-12336
* | | | | | | | | [ticket/12386] Rename DEBUG_EXTRA to DEBUG_CONTAINER for more descriptive nameMarc Alexander2014-04-112-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12386
* | | | | | | | | [ticket/12386] Add DEBUG_EXTRA again and use it for container creationMarc Alexander2014-04-112-2/+13
| |_|_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We are currently creating a new compiled container on every page load when having DEBUG enabled. However, one might only have that enabled to be presented with errors or for getting the page load stats. This change will add the DEBUG_EXTRA constant again. It will be used for choosing whether the compiled container should be created on every page load - when defined as true - or just once after the cache is cleared. PHPBB3-12386
* | | | | | | | Merge remote-tracking branch 'vsephpbb/ticket/12283' into develop-ascraeusJoas Schilling2014-04-111-1/+1
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * vsephpbb/ticket/12283: [ticket/12283] Remove obsolete online class from posting review page
| * | | | | | | | [ticket/12283] Remove obsolete online class from posting review pageMatt Friedman2014-04-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12283
* | | | | | | | | Merge remote-tracking branch 'paybas/ticket/12377' into develop-ascraeusJoas Schilling2014-04-116-119/+120
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * paybas/ticket/12377: [ticket/12377] Forgot to change the INCLUDEs [ticket/12377] Renamed template files to navbar_xxx [ticket/12377] Moved notifications to new template [ticket/12377] Forgot empty line at the end [ticket/12377] Move navbar(s) to new template file
| * | | | | | | | | [ticket/12377] Forgot to change the INCLUDEsPayBas2014-04-102-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12377
| * | | | | | | | | [ticket/12377] Renamed template files to navbar_xxxPayBas2014-04-103-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12377
| * | | | | | | | | [ticket/12377] Moved notifications to new templatePayBas2014-04-103-107/+108
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | And also reset all starting indentation to 0 PHPBB3-12377
| * | | | | | | | | [ticket/12377] Forgot empty line at the endPayBas2014-04-102-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12377
| * | | | | | | | | [ticket/12377] Move navbar(s) to new template filePayBas2014-04-105-118/+118
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12377
* | | | | | | | | | Merge remote-tracking branch 'vsephpbb/ticket/12380' into develop-ascraeusJoas Schilling2014-04-111-1/+2
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * vsephpbb/ticket/12380: [ticket/12380] Explicity state the order of sorting for login keys [ticket/12380] Sort Remember Me keys by last login time in UCP
| * | | | | | | | | | [ticket/12380] Explicity state the order of sorting for login keysMatt Friedman2014-04-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12380
| * | | | | | | | | | [ticket/12380] Sort Remember Me keys by last login time in UCPMatt Friedman2014-04-101-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12380
* | | | | | | | | | | Merge remote-tracking branch 'varunagw/ticket/12355' into develop-ascraeusJoas Schilling2014-04-112-21/+41
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * varunagw/ticket/12355: [ticket/12355] Topic Tools not fully updated when subscribing/bookmarking
| * | | | | | | | | | [ticket/12355] Topic Tools not fully updated when subscribing/bookmarkingVarun Agrawal2014-04-112-21/+41
| | |_|_|_|/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The Topic Tools menu appears at the top of a topic page and again at the bottom of a topic page. When you use the Topic Tools menu to Bookmark or Subscribe to a Topic, the menu item you chose is updated to reflect that, by switching to say Unsubscribe topic or Remove from Bookmarks. However, this change is not mirrored in the other Topic Tools menu at the other location on the page. Both Topic Tools menus should be updated during the AJAX event, so that they always show the same options to the user. It is solved by creating a data-update-all attribute which contains all the class/ID that will update when topic tool is clicked PHPBB3-12355