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:
authorJan Pecek <honzap@gmail.com>2012-04-17 19:07:06 +0400
committerJan Pecek <honzap@gmail.com>2012-04-17 19:07:06 +0400
commit085111e9888c456e6c5d68a86de6d6e73196e746 (patch)
tree153100bdf4adec90bc1b919f0032bab7c59046dd /main.php
parent033a502e4d11f9b38a7c9ff4917366c6af755adf (diff)
Remove PMA_sanitize from Suhosin warning (escaping is made twice)
Diffstat (limited to 'main.php')
-rw-r--r--main.php10
1 files changed, 4 insertions, 6 deletions
diff --git a/main.php b/main.php
index 06a32f7e26..4baeda03a1 100644
--- a/main.php
+++ b/main.php
@@ -373,12 +373,10 @@ if ($cfg['SuhosinDisableWarning'] == false
&& @ini_get('suhosin.request.max_value_length')
) {
trigger_error(
- PMA_sanitize(
- sprintf(
- __('Server running with Suhosin. Please refer to %sdocumentation%s for possible issues.'),
- '[a@./Documentation.html#faq1_38@_blank]',
- '[/a]'
- )
+ sprintf(
+ __('Server running with Suhosin. Please refer to %sdocumentation%s for possible issues.'),
+ '[a@./Documentation.html#faq1_38@_blank]',
+ '[/a]'
),
E_USER_WARNING
);