Ver código fonte

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 anos atrás
pai
commit
99adfbdb86
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      lib/helper.php

+ 1
- 1
lib/helper.php Ver arquivo

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

Carregando…
Cancelar
Salvar