[ticket/10931] Let us try ini_get() without error suppression.

PHPBB3-10931
This commit is contained in:
Andreas Fischer 2012-06-11 13:40:14 +02:00
parent afd6f86892
commit 5bea6ed946

View file

@ -34,7 +34,7 @@ class phpbb_php_ini
*/ */
public function get($varname) public function get($varname)
{ {
return @ini_get($varname); return ini_get($varname);
} }
/** /**