diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2014-05-11 15:50:59 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2014-05-11 15:50:59 +0200 |
commit | fd5b2d11d6a174f46df563917060e350f6df079a (patch) | |
tree | 9b01c11680bb6cff5ec255c15dc723b4b2a9f72d /lib/private/helper.php | |
parent | a40e49cae5983d8158562e142919cd3108bd2fd8 (diff) | |
download | nextcloud-server-fd5b2d11d6a174f46df563917060e350f6df079a.tar.gz nextcloud-server-fd5b2d11d6a174f46df563917060e350f6df079a.zip |
Rename issubdirectory to isSubDirectory
Diffstat (limited to 'lib/private/helper.php')
-rw-r--r-- | lib/private/helper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/helper.php b/lib/private/helper.php index 1883ae2a8f2..6bc054bce86 100644 --- a/lib/private/helper.php +++ b/lib/private/helper.php @@ -732,7 +732,7 @@ class OC_Helper { * @param string $parent * @return bool */ - public static function issubdirectory($sub, $parent) { + public static function isSubDirectory($sub, $parent) { $realpathSub = realpath($sub); $realpathParent = realpath($parent); |