header("X-XSS-Protection: 0"); // prevents introducing XSS in IE8 by removing safe parts of the page
}
+ /** Print HTML code inside <head>
+ * @return bool true to link adminer.css if exists
+ */
+ function head() {
+ return true;
+ }
+
/** Print login form
* @return null
*/
<title><?php echo $title_page; ?></title>
<link rel="shortcut icon" type="image/x-icon" href="../adminer/static/favicon.ico" id="favicon">
<link rel="stylesheet" type="text/css" href="../adminer/static/default.css">
-<?php if (file_exists("adminer.css")) { ?>
+<?php if ($adminer->head() && file_exists("adminer.css")) { ?>
<link rel="stylesheet" type="text/css" href="adminer.css">
<?php } ?>
Enum editor and textarea Ctrl+Enter working in IE
AJAX forms in Google Chrome
Parse UTF-16 and UTF-8 BOM in all text uploads
+Display ; in history (thanks to Jan Cerny)
Use DELIMITER in history
Show databases even with skip_show_database in MySQL 5 (thanks to Radoslaw Kowalewski)
Set MySQL time zone by PHP setting
Disable maxlength with functions in edit
Better placement of AJAX icon
-Display ; in history (thanks to Jan Cerny)
Table header in CSV export (Editor)
Time format hint (Editor)
Respect order after search (Editor)
+Allow own code in <head> (customization)
Polish translation
Adminer 3.2.0 (released 2011-02-24):
return $this->_applyPlugin(__FUNCTION__, $args);
}
+ function head() {
+ $args = func_get_args();
+ return $this->_applyPlugin(__FUNCTION__, $args);
+ }
+
function loginForm() {
$args = func_get_args();
return $this->_applyPlugin(__FUNCTION__, $args);