Merge branch 'QA_4_4'

This commit is contained in:
Marc Delisle 2015-08-23 15:16:13 -04:00
commit 68767c0ce6
2 changed files with 2 additions and 0 deletions

View File

@ -96,6 +96,7 @@ phpMyAdmin - ChangeLog
- issue #11407 ALTER TABLE failing on import when table exists
4.4.15.0 (not yet released)
- issue #11411 Undefined "replace" function on numeric scalar
4.4.14.0 (2015-08-20)
- issue #11367 Export after search, missing WHERE clause

View File

@ -209,6 +209,7 @@ function PMA_tooltip($elements, item, myContent, additionalOptions)
function escapeHtml(unsafe) {
if (typeof(unsafe) != 'undefined') {
return unsafe
.toString()
.replace(/&/g, "&")
.replace(/</g, "&lt;")
.replace(/>/g, "&gt;")