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:
authorMichal Čihař <mcihar@suse.cz>2011-08-05 12:29:04 +0400
committerMichal Čihař <mcihar@suse.cz>2011-08-05 12:32:34 +0400
commit21b5b87c9225097fd2b7cfe22d8171a264070bc1 (patch)
treec84dac9886a7829b8fcb995157d87568ed269cfa /server_synchronize.php
parent4833db7d64236ae44d240d1b49841b00d650775a (diff)
Escape only parts which need it, not translated string
Diffstat (limited to 'server_synchronize.php')
-rw-r--r--server_synchronize.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/server_synchronize.php b/server_synchronize.php
index 4b4322cfc4..3e57f441a0 100644
--- a/server_synchronize.php
+++ b/server_synchronize.php
@@ -1109,7 +1109,7 @@ if (isset($_REQUEST['synchronize_db'])) {
$value .= '||||';
$value .= $tmp_server['only_db'];
echo '<option value="' . $value . '" >'
- . htmlspecialchars(sprintf(__('Configuration: %s'), $label)) . '</option>';
+ . sprintf(__('Configuration: %s'), htmlspecialchars($label)) . '</option>';
} // end foreach
?>
</select>