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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2014-05-11 17:50:59 +0400
committerLukas Reschke <lukas@statuscode.ch>2014-05-11 17:50:59 +0400
commitfd5b2d11d6a174f46df563917060e350f6df079a (patch)
tree9b01c11680bb6cff5ec255c15dc723b4b2a9f72d /lib/private/helper.php
parenta40e49cae5983d8158562e142919cd3108bd2fd8 (diff)
Rename issubdirectory to isSubDirectory
Diffstat (limited to 'lib/private/helper.php')
-rw-r--r--lib/private/helper.php2
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);