do not htmlentities on whole string
This commit is contained in:
@@ -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,
|
||||||
|
@@ -174,7 +174,7 @@ function PMA_generate_common_url ($db = '', $table = '', $delim = '&')
|
|||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
|
|
||||||
return htmlentities( $questionmark . implode( $delim, $param_strings ) );
|
return $questionmark . implode( $delim, $param_strings );
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
Reference in New Issue
Block a user