diff options
Diffstat (limited to 'core/ajax')
-rw-r--r-- | core/ajax/appconfig.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ajax/appconfig.php b/core/ajax/appconfig.php index 50984ac32b9..f815d710631 100644 --- a/core/ajax/appconfig.php +++ b/core/ajax/appconfig.php @@ -11,7 +11,7 @@ $action=isset($_POST['action'])?$_POST['action']:$_GET['action']; $result=false; switch($action){ case 'getValue': - $result=OC_Appconfig::getValue($_GET['app'],$_GET['key'],$_GET['default']); + $result=OC_Appconfig::getValue($_GET['app'],$_GET['key'],$_GET['defaultValue']); break; case 'setValue': $result=OC_Appconfig::setValue($_POST['app'],$_POST['key'],$_POST['value']); |