diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-04-09 14:04:56 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-04-09 14:04:56 +0200 |
commit | 36b3bc8148648eaadcc3769b1624fe1dd4c8bf93 (patch) | |
tree | a9f8cda485a75c2e1b9afd559beeb3ded4456942 /core/Controller/SetupController.php | |
parent | 66b743385e3e8cadb6d848cf64e1d86da2fd81b3 (diff) | |
download | nextcloud-server-36b3bc8148648eaadcc3769b1624fe1dd4c8bf93.tar.gz nextcloud-server-36b3bc8148648eaadcc3769b1624fe1dd4c8bf93.zip |
Use php keywords in lowercase
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'core/Controller/SetupController.php')
-rw-r--r-- | core/Controller/SetupController.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Controller/SetupController.php b/core/Controller/SetupController.php index 7449717831b..7df02dfea0e 100644 --- a/core/Controller/SetupController.php +++ b/core/Controller/SetupController.php @@ -70,7 +70,7 @@ class SetupController { return; } - if(isset($post['install']) AND $post['install']=='true') { + if(isset($post['install']) and $post['install']=='true') { // We have to launch the installation process : $e = $this->setupHelper->install($post); $errors = ['errors' => $e]; @@ -141,7 +141,7 @@ class SetupController { $directoryIsSet = isset($post['directory']); $adminAccountIsSet = isset($post['adminlogin']); - if ($dbIsSet AND $directoryIsSet AND $adminAccountIsSet) { + if ($dbIsSet and $directoryIsSet and $adminAccountIsSet) { $post['install'] = 'true'; } $post['dbIsSet'] = $dbIsSet; |