1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-12 09:34:10 +02:00

Avoid double escaping in second page title

This commit is contained in:
Jakub Vrana
2013-07-05 01:31:53 -07:00
parent 679e818fca
commit f4addc5259
9 changed files with 11 additions and 11 deletions

View File

@@ -35,7 +35,7 @@ if ($_POST && !$error && !isset($_POST["add_x"])) { // add is an image and PHP c
}
}
page_header(DB != "" ? lang('Alter database') : lang('Create database'), $error, array(), DB);
page_header(DB != "" ? lang('Alter database') : lang('Create database'), $error, array(), h(DB));
$collations = collations();
$name = DB;