Merge branch 'QA_4_7'

This commit is contained in:
Michal Čihař 2017-06-06 11:18:48 +02:00
commit 937c946cfe
2 changed files with 2 additions and 1 deletions

View File

@ -20,6 +20,7 @@ phpMyAdmin - ChangeLog
- issue #13314 Make theme selection keep current server
- issue #13311 Fixed direct login for accounts without password
- issue #13316 Fixed check for mbstring.func_overload
- issue #13323 Fixed wrong encoding of table at triggers
4.7.1 (2017-05-25)
- issue #13132 Always execute tracking queries as controluser

View File

@ -354,7 +354,7 @@ function PMA_TRI_getRowForList($trigger, $rowclass = '')
$retval .= " <td>\n";
$retval .= "<a href='db_triggers.php{$url_query}"
. "&amp;table=" . urlencode($trigger['table']) . "'>"
. urlencode($trigger['table']) . "</a>";
. htmlspecialchars($trigger['table']) . "</a>";
$retval .= " </td>\n";
}
$retval .= " <td>\n";