1
0
mirror of https://github.com/vrana/adminer.git synced 2025-09-03 19:32:36 +02:00

Compare commits

..

1 Commits

Author SHA1 Message Date
Jakub Vrana
596f8df373 Fix XSS in alter table (found by HP Fortify) 2015-08-05 18:12:36 -07:00
3 changed files with 5 additions and 1 deletions

View File

@@ -234,6 +234,7 @@ function type_class($type) {
*/
function edit_fields($fields, $collations, $type = "TABLE", $foreign_keys = array(), $comments = false) {
global $connection, $inout;
$fields = array_values($fields);
?>
<thead><tr class="wrap">
<?php if ($type == "PROCEDURE") { ?><td>&nbsp;<?php } ?>

View File

@@ -1,2 +1,2 @@
<?php
$VERSION = "4.2.1";
$VERSION = "4.2.2";

View File

@@ -1,3 +1,6 @@
Adminer 4.2.2 (released ):
Fix XSS in alter table (found by HP Fortify)
Adminer 4.2.1 (released 2015-03-10):
Send referrer header to the same domain
MySQL: Fix usage of utf8mb4 if the client library doesn't support it