do not htmlentities on whole string

This commit is contained in:
Sebastian Mendel
2005-11-25 09:51:18 +00:00
parent 562c710eed
commit 8e029f7ad8
2 changed files with 4 additions and 1 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2005-11-24 Sebastian Mendel <cybot_tm@users.sourceforge.net>
* libraries/url_generating.lib.php: do not htmlentities on whole string
2005-11-25 Michal Čihař <michal@cihar.com> 2005-11-25 Michal Čihař <michal@cihar.com>
* Documentation.html, config.footer.inc.php(deleted), * Documentation.html, config.footer.inc.php(deleted),
config.header.inc.php(deleted), libraries/common.lib.php, config.header.inc.php(deleted), libraries/common.lib.php,

View File

@@ -174,7 +174,7 @@ function PMA_generate_common_url ($db = '', $table = '', $delim = '&amp;')
return ''; return '';
} }
return htmlentities( $questionmark . implode( $delim, $param_strings ) ); return $questionmark . implode( $delim, $param_strings );
} }
?> ?>