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:
@@ -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;
|
||||
|
Reference in New Issue
Block a user