]> git.joonet.de Git - adminer.git/commitdiff
Comment
authorJakub Vrana <jakub@vrana.cz>
Tue, 2 Aug 2011 15:49:00 +0000 (17:49 +0200)
committerJakub Vrana <jakub@vrana.cz>
Wed, 3 Aug 2011 08:54:29 +0000 (10:54 +0200)
adminer/schema.inc.php

index aedd8cc99237af505e4a4fc70a1ee5e4b77c642c..31e61372e63fd3d575200a835e9d1e1c37872da8 100644 (file)
@@ -3,7 +3,6 @@ page_header(lang('Database schema'), "", array(), DB);
 
 $table_pos = array();
 $table_pos_js = array();
-// saved in one cookie because there is a limit of 20 cookies per domain
 $name = "adminer_schema";
 $SCHEMA = ($_GET["schema"] ? $_GET["schema"] : $_COOKIE[($_COOKIE["$name-" . DB] ? "$name-" . DB : $name)]); // $_COOKIE["adminer_schema"] was used before 3.2.0 //! ':' in table name
 preg_match_all('~([^:]+):([-0-9.]+)x([-0-9.]+)(_|$)~', $SCHEMA, $matches, PREG_SET_ORDER);