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 /lib/private/legacy/OC_Helper.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 'lib/private/legacy/OC_Helper.php')
-rw-r--r-- | lib/private/legacy/OC_Helper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/legacy/OC_Helper.php b/lib/private/legacy/OC_Helper.php index 7cb6e228b5d..73154909a4a 100644 --- a/lib/private/legacy/OC_Helper.php +++ b/lib/private/legacy/OC_Helper.php @@ -367,7 +367,7 @@ class OC_Helper { $it = new RecursiveIteratorIterator($aIt); while ($it->valid()) { - if (((isset($index) AND ($it->key() == $index)) OR !isset($index)) AND ($it->current() == $needle)) { + if (((isset($index) and ($it->key() == $index)) or !isset($index)) and ($it->current() == $needle)) { return $aIt->key(); } |