aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/request/interface.php
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/10939] Added $_FILES handling to phpbb_requestFyorl2012-08-151-0/+1
| | | | PHPBB3-10939
* [ticket/9916] Updating header license and removing Version $Id$Unknown2011-12-311-1/+1
| | | | PHPBB3-9916
* [feature/request-class] Remove $html_encode arg, force manual decodingIgor Wiedler2011-08-181-6/+3
| | | | PHPBB3-9716
* [feature/request-class] Add is_secure method to request for HTTPSIgor Wiedler2011-08-181-0/+7
| | | | PHPBB3-9716
* [feature/request-class] Add server(), header() and is_ajax() to requestIgor Wiedler2011-07-151-1/+32
| | | | | | | | | | | | Extend the request class with helpers for reading server vars (server()) and HTTP request headers (header()). Refactor the existing code base to make use of these helpers, make $_SERVER a deactivated super global. Also introduce an is_ajax() method, which checks the X-Requested-With header for the value 'XMLHttpRequest', which is sent by JavaScript libraries, such as jQuery. PHPBB3-9716
* [feature/request-class] Refactor request classes to use autoloadingIgor Wiedler2010-09-171-0/+103
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