aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2012-06-11 13:40:14 +0200
committerAndreas Fischer <bantu@phpbb.com>2012-06-11 13:40:14 +0200
commit5bea6ed94658d3302dda54eceaeb326e6f888286 (patch)
treea15d592df523a0af5d37f63963daa9892b2d4136 /phpBB/includes
parentafd6f86892fbbbe06aa0b1295dba361fab29fd5f (diff)
downloadforums-5bea6ed94658d3302dda54eceaeb326e6f888286.tar
forums-5bea6ed94658d3302dda54eceaeb326e6f888286.tar.gz
forums-5bea6ed94658d3302dda54eceaeb326e6f888286.tar.bz2
forums-5bea6ed94658d3302dda54eceaeb326e6f888286.tar.xz
forums-5bea6ed94658d3302dda54eceaeb326e6f888286.zip
[ticket/10931] Let us try ini_get() without error suppression.
PHPBB3-10931
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/php/ini.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/php/ini.php b/phpBB/includes/php/ini.php
index 5c2cadb052..92965e7f94 100644
--- a/phpBB/includes/php/ini.php
+++ b/phpBB/includes/php/ini.php
@@ -34,7 +34,7 @@ class phpbb_php_ini
*/
public function get($varname)
{
- return @ini_get($varname);
+ return ini_get($varname);
}
/**