aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/request/deactivated_super_global.php
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/9916] Updating header license and removing Version $Id$Unknown2011-12-311-1/+1
| | | | PHPBB3-9916
* [feature/request-class] Fix the error message when accessing superglobalIgor Wiedler2011-02-281-1/+1
| | | | | | Adjust the misleading "This error message was generated" text. PHPBB3-9716
* [feature/request-class] Refactor request classes to use autoloadingIgor Wiedler2010-09-171-1/+1
| | | | | | | | | All class names have been adjusted to use a phpbb_request prefix, allowing them to be autoloaded. Also introduces some improvements to autoloading in general. PHPBB3-9716
* [feature/request-class] Adding a request class based on ascraeus-experiment.Nils Adermann2010-09-171-0/+121
The well known request_var function is now a wrapper that calls a method on a phpbb_request object. The class provides additional functionality. It can replace all super globals with special objects that throw errors when being accessed. They still allow isset operations to keep backward compatibility with isset($_POST['var']) checks. The phpbb_request class implements the phpbb_request_interface which is available for easy mocking of input in tests. PHPBB3-9716