Browse Source

Check for string position instead of string existence

otherwise /foo/bar would be detected as a subfolder of /bar

THX @icewind1991
tags/v5.0.0alpha1
Lukas Reschke 11 years ago
parent
commit
99adfbdb86
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      lib/helper.php

+ 1
- 1
lib/helper.php View File

@@ -633,7 +633,7 @@ class OC_Helper {
* @return bool
*/
public static function issubdirectory($sub, $parent) {
if (strpos(realpath($sub), realpath($parent)) !== false) {
if (strpos(realpath($sub), realpath($parent)) === 0) {
return true;
}
return false;

Loading…
Cancel
Save