Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauriciofauth@gmail.com>2018-02-28 23:16:41 +0300
committerMaurício Meneghini Fauth <mauriciofauth@gmail.com>2018-03-02 04:36:35 +0300
commitcf60373e8417a782b7680d0b4dd88706db5aeafa (patch)
treed422eef052296435802c5e824016a04a7e7bc908 /index.php
parent35eb2da38a97e2a41b3f6137780bd12a74f8b6c4 (diff)
Remove @ operator from extension_loaded()
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
Diffstat (limited to 'index.php')
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index 3976d9c65f..48537c086d 100644
--- a/index.php
+++ b/index.php
@@ -496,7 +496,7 @@ echo '</div>';
* mbstring is used for handling multibytes inside parser, so it is good
* to tell user something might be broken without it, see bug #1063149.
*/
-if (! @extension_loaded('mbstring')) {
+if (! extension_loaded('mbstring')) {
trigger_error(
__(
'The mbstring PHP extension was not found and you seem to be using'