Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/apps.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2012-11-19 05:26:29 +0400
committerBernhard Posselt <nukeawhale@gmail.com>2012-11-19 05:26:29 +0400
commit9efbf9caadaafd63a1f3f1c0d492fb7236bffff6 (patch)
tree1f17404222547503875134215ecfd0c68ae4b7f4 /apptemplate
parent9550d32b413d11420133752d224c8da6d1f1ed49 (diff)
fixed small typo
Diffstat (limited to 'apptemplate')
-rw-r--r--apptemplate/lib/controller.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apptemplate/lib/controller.php b/apptemplate/lib/controller.php
index 512286734..ad87181d4 100644
--- a/apptemplate/lib/controller.php
+++ b/apptemplate/lib/controller.php
@@ -46,7 +46,7 @@ class Controller {
* key, return the value in $_POST
* @return: the content of the array
*/
- protected function param($key){
+ protected function params($key){
$postValue = $this->request->getPOST($key);
$getValue = $this->request->getGET($key);