1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-03 23:37:39 +02:00

[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);
} }
/** /**