diff options
author | David King <imkingdavid@gmail.com> | 2013-09-10 15:48:29 -0700 |
---|---|---|
committer | David King <imkingdavid@gmail.com> | 2013-09-10 15:48:29 -0700 |
commit | fc1dfd779da37128382322ffdc75bf751a0834a3 (patch) | |
tree | 5d43d1847832169510c55c3358c42ccd095b2128 /phpBB/phpbb/request/request.php | |
parent | 71aeec40f6c4c5e6a69699486b618c2ba67dff2d (diff) | |
parent | 18f6a161017f5350d9487181f4b4ed66a53a0284 (diff) | |
download | forums-fc1dfd779da37128382322ffdc75bf751a0834a3.tar forums-fc1dfd779da37128382322ffdc75bf751a0834a3.tar.gz forums-fc1dfd779da37128382322ffdc75bf751a0834a3.tar.bz2 forums-fc1dfd779da37128382322ffdc75bf751a0834a3.tar.xz forums-fc1dfd779da37128382322ffdc75bf751a0834a3.zip |
Merge remote-tracking branch 'Hardolaf/feature/oauth' into develop
Diffstat (limited to 'phpBB/phpbb/request/request.php')
-rw-r--r-- | phpBB/phpbb/request/request.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/phpBB/phpbb/request/request.php b/phpBB/phpbb/request/request.php index ae3c526d89..ed2e8e2200 100644 --- a/phpBB/phpbb/request/request.php +++ b/phpBB/phpbb/request/request.php @@ -412,4 +412,12 @@ class phpbb_request implements phpbb_request_interface return $var; } + + /** + * {@inheritdoc} + */ + public function get_super_global($super_global = phpbb_request_interface::REQUEST) + { + return $this->input[$super_global]; + } } |