Check for string position instead of string existence

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

THX @icewind1991
remotes/origin/stable5
Lukas Reschke 12 years ago
parent b7db967dc5
commit 99adfbdb86
  1. 2
      lib/helper.php

@ -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