aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/11997] Use get_controller_redirect_url() in redirect() functionMarc Alexander2013-12-071-46/+70
| | | | | | | This method of path_helper will now be used instead of the previous hack of the phpbb_own_realpath() function. PHPBB3-11997
* [ticket/11997] Undo changes to phpbb_own_realpath()Marc Alexander2013-12-071-0/+8
| | | | PHPBB3-11997
* [ticket/11997] Remove obsolete failover_flag in function redirect()Marc Alexander2013-11-171-41/+36
| | | | | | This flag is no longer needed as the failover is no longer needed. PHPBB3-11997
* [ticket/11997] Fix missing globalJoas Schilling2013-11-131-1/+1
| | | | PHPBB3-11997
* [ticket/11997] Fix redirects from inside controllersJoas Schilling2013-11-131-0/+10
| | | | | | | | | The redirect url currently uses the web root path. However as we prepend the full board url later, we need to remove the relative web root path and prepend the normal root path again. Otherwise redirects from inside routes will not work as intended. PHPBB3-11997
* [ticket/11997] Use $phpbb_filesystem->clean_path() for proper redirect pathsMarc Alexander2013-11-121-11/+4
| | | | PHPBB3-11997
* [ticket/11997] Rename root_dirs_size to superordinate_dirs_countMarc Alexander2013-11-111-2/+10
| | | | | | | This variable name better fits what is done with it. A comment explaining why 2 has to be subtracted from the size of root_dirs has also been added PHPBB3-11997
* [ticket/11997] Remove obsolete if statement in phpbb_own_realpath()Marc Alexander2013-11-101-10/+0
| | | | PHPBB3-11997
* [ticket/11997] Correctly redirect to front controllersMarc Alexander2013-11-081-24/+6
| | | | | | | | | | | We currently do a lot of checks in order to prevent users from getting to a 404 page. However, this logic relies on checking if a file or folder exists. Due to the front controllers and the URL rewriting in 3.1, it is no longer possible to rely on existing files for redirecting. This patch will take care of properly redirecting users to front controller files. An incorrect link will cause users to get a 404 error though. PHPBB3-11997
* [ticket/11994] Change error level for missing .json fileJoas Schilling2013-11-081-1/+1
| | | | PHPBB3-11994
* [ticket/11994] Rename "uninstall" to "delete data"Joas Schilling2013-11-081-9/+12
| | | | PHPBB3-11994
* [ticket/11994] Make install/enable just one UI thingJoas Schilling2013-11-081-8/+4
| | | | PHPBB3-11994
* [ticket/11994] Use display name on confirmation screenJoas Schilling2013-11-081-3/+3
| | | | PHPBB3-11994
* [ticket/11994] Make extension manager UI less misleadingJoas Schilling2013-11-081-13/+21
| | | | | | | Enable and Install were split into two different expressions. Purge was renamed to uninstall to make clearer what is going to happen. PHPBB3-11994
* Merge remote-tracking branch 'nickvergessen/ticket/11973' into developDhruv2013-11-041-2/+3
|\ | | | | | | | | | | | | # By Joas Schilling # Via Joas Schilling * nickvergessen/ticket/11973: [ticket/11973] Remove logic from tokens language array
| * [ticket/11973] Remove logic from tokens language arrayJoas Schilling2013-10-261-2/+3
| | | | | | | | | | | | | | | | | | | | Previously if a translator did no translate a token, it would not be displayed. On the other hand, the translator could add additional tokens which have no functionality. Functionality is already hardcoded into bbcode.php so we can that in the ACP aswell, in order to prevent namend issues. PHPBB3-11973
* | [ticket/11990] Remove result_mssqlnative usage in acp_database.phpPatrick Webster2013-11-031-8/+9
| | | | | | | | | | | | | | | | | | | | | | The class result_mssqlnative was removed in ticket 11980. This removes the dependency on that class from the database backup utility. It is possible to use the sqlsrv functions to retrieve the field information, but they must be then mapped back to type names. That mapping was removed in 11980 and it is easier to just look it up in the information schema table. PHPBB3-11990
* | Merge pull request #1790 from prototech/ticket/11280Nathan Guse2013-11-021-1/+0
|\ \ | | | | | | [ticket/11280] Prevent duplicate entry in forums_track table.
| * | [ticket/11280] Prevent duplicate entry in forums_track table.Cesar G2013-10-161-1/+0
| | | | | | | | | | | | | | | | | | | | | Enforcing a time limit prevents all rows from being selected, thus a new row is inserted resulting in a duplicate entry. PHPBB3-11280
* | | Merge pull request #1812 from prototech/ticket/11746Nathan Guse2013-11-023-35/+16
|\ \ \ | | | | | | | | [ticket/11746] Add "admin activation required" notification.
| * | | [ticket/11746] Delete the notification after user is approved & fix language.Cesar G2013-10-262-2/+2
| | | | | | | | | | | | | | | | PHPBB3-11746
| * | | [ticket/11746] Add "admin activation required" notification.Cesar G2013-10-243-35/+16
| | |/ | |/| | | | | | | PHPBB3-11746
* | | Merge remote-tracking branch 'brunoais/ticket/11663' into developJoas Schilling2013-11-021-1/+11
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | * brunoais/ticket/11663: [ticket/11663] Add the doc block about the parameters. [ticket/11663] Add the doc block about the return value. [ticket/11663] Make generate_text_for_storage return the errors.
| * | | [ticket/11663] Add the doc block about the parameters.brunoais2013-08-171-0/+8
| | | | | | | | | | | | | | | | PHPBB3-11663
| * | | [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-021-2/+34
|\ \ \ \ | | | | | | | | | | Ticket/11031 Bring phpBB2 converter up to speed with 3.1 changes
| * | | | [ticket/11031] Correctly add groups to teampageJoas Schilling2013-11-021-1/+33
| | | | | | | | | | | | | | | | | | | | PHPBB3-11031
| * | | | [ticket/11031] Fix group legend positionJoas Schilling2013-10-281-1/+1
| | |/ / | |/| | | | | | | | | | PHPBB3-11031
* | | | [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-017-17/+18
|\ \ \ \ | | | | | | | | | | More PHP Code Sniffer rules
| * | | | [task/code-sniffer] Replace spaces with tabs.Andreas Fischer2013-10-307-16/+17
| | | | | | | | | | | | | | | | | | | | PHPBB3-11980
| * | | | [task/code-sniffer] Fix argument list spacing.Andreas Fischer2013-10-291-1/+1
| | | | | | | | | | | | | | | | | | | | PHPBB3-11980
* | | | | [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-302-2/+0
| | | | | | | | | | | | | | | | | | | | PHPBB3-11987
* | | | | [ticket/11987] Change {ROOT_PATH} to point to board root.Cesar G2013-10-301-1/+1
| | | | | | | | | | | | | | | | | | | | PHPBB3-11987
* | | | | Merge remote-tracking branch 'nickvergessen/ticket/11974' into developDhruv2013-10-301-10/+4
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | # By Joas Schilling # Via Joas Schilling * nickvergessen/ticket/11974: [ticket/11974] Fix timezone names with underscores [ticket/11974] Translate all timezones
| * | | | [ticket/11974] Translate all timezonesJoas Schilling2013-10-271-10/+4
| |/ / / | | | | | | | | | | | | PHPBB3-11974
* | | | Merge remote-tracking branch 'marc1706/ticket/11981' into developAndreas Fischer2013-10-297-26/+30
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | * marc1706/ticket/11981: [ticket/11981] Fix code sniffer complaints
| * | | | [ticket/11981] Fix code sniffer complaintsMarc Alexander2013-10-287-26/+30
| |/ / / | | | | | | | | | | | | PHPBB3-11981
* | | | Merge pull request #1784 from nickvergessen/ticket/11924Nils Adermann2013-10-283-8/+8
|\ \ \ \ | |/ / / |/| | | [Ticket/11924] Add a script to export the events in wiki format
| * | | [ticket/11924] Fix some minor issues with the php event docsJoas Schilling2013-10-163-8/+8
| | | | | | | | | | | | | | | | PHPBB3-11924
* | | | Merge pull request #1801 from nickvergessen/ticket/11948Nils Adermann2013-10-221-4/+4
|\ \ \ \ | | | | | | | | | | Ticket/11948 Extensions should be allowed to have more then 1 routing file
| * | | | [ticket/11948] Allow resource importing for routingJoas Schilling2013-10-211-4/+4
| | |_|/ | |/| | | | | | | | | | PHPBB3-11948
* | | | [ticket/11923] Attempt to translate errors only if user can change avatar.Cesar G2013-10-171-3/+3
|/ / / | | | | | | | | | PHPBB3-11923
* | | Merge pull request #1781 from VSEphpbb/ticket/11921Nathan Guse2013-10-162-16/+4
|\ \ \ | |/ / |/| | Ticket/11921 - Streamline PMs and Notifications in Header Link List
| * | [ticket/11921] Directly inject unread messages count into the templateMatt Friedman2013-10-161-8/+2
| | | | | | | | | | | | PHPBB3-11921
| * | [ticket/11921] Only get the count of unread PMsMatt Friedman2013-10-161-4/+1
| | | | | | | | | | | | PHPBB3-11921
| * | [ticket/11921] Move any HTML for Notifications to the templatesMatt Friedman2013-10-162-2/+2
| | | | | | | | | | | | PHPBB3-11921
| * | [ticket/11921] Remove "l_" from non-lang variablesMatt Friedman2013-10-151-5/+5
| | | | | | | | | | | | PHPBB3-11921