1
0
Fork 0

fix: missing parentheses

pull/4834/head
appchecker 2016-01-26 18:19:58 +03:00
parent 618e7f98b2
commit 13b50799d1
1 changed files with 1 additions and 1 deletions

View File

@ -191,7 +191,7 @@ class Config
return $val;
}
return ($flags & self::RELATIVE_PATHS == self::RELATIVE_PATHS) ? $val : $this->realpath($val);
return (($flags & self::RELATIVE_PATHS) == self::RELATIVE_PATHS) ? $val : $this->realpath($val);
case 'cache-ttl':
return (int) $this->config[$key];