1
0
Fork 0

Merge pull request #4834 from AppChecker/master

fix: missing parentheses
pull/4840/head
Jordi Boggiano 2016-01-26 15:35:21 +00:00
commit 1edb228d81
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];