diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-09-18 03:10:42 -0700 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-09-18 03:10:42 -0700 |
commit | 415a27c1aea82bad9f7da973854c28f15cadbee3 (patch) | |
tree | 772fe7bf157ffad41e6d2b4bbce592a0d46c7ad6 /lib/appframework/controller/controller.php | |
parent | 9b420e8660404de27e3af629bfca188ae90cf7bd (diff) | |
parent | d3f88ceeb49b9b86d32124163b0cea82567a4911 (diff) | |
download | nextcloud-server-415a27c1aea82bad9f7da973854c28f15cadbee3.tar.gz nextcloud-server-415a27c1aea82bad9f7da973854c28f15cadbee3.zip |
Merge pull request #4888 from owncloud/public_session
Public session
Diffstat (limited to 'lib/appframework/controller/controller.php')
-rw-r--r-- | lib/appframework/controller/controller.php | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/appframework/controller/controller.php b/lib/appframework/controller/controller.php index a7498ba0e1e..0ea0a38cc09 100644 --- a/lib/appframework/controller/controller.php +++ b/lib/appframework/controller/controller.php @@ -107,16 +107,6 @@ abstract class Controller { /** - * Shortcut for getting session variables - * @param string $key the key that will be taken from the $_SESSION array - * @return array the value in the $_SESSION element - */ - public function session($key) { - return $this->request->getSession($key); - } - - - /** * Shortcut for getting cookie variables * @param string $key the key that will be taken from the $_COOKIE array * @return array the value in the $_COOKIE element |