]> git.joonet.de Git - adminer.git/commitdiff
Fix counting selected rows after going back to select page
authorJakub Vrana <jakub@vrana.cz>
Thu, 25 Jan 2018 07:33:40 +0000 (08:33 +0100)
committerJakub Vrana <jakub@vrana.cz>
Fri, 26 Jan 2018 07:52:12 +0000 (08:52 +0100)
adminer/include/version.inc.php
adminer/select.inc.php
changes.txt

index df95bbd59786b1d36dd56a9d4e732e89505b70a0..e1a68694f667992814349434c639e991b7a30668 100644 (file)
@@ -1,2 +1,2 @@
 <?php
-$VERSION = "4.5.0";
+$VERSION = "4.5.1-dev";
index 2e8d157a19cbea43b8f31c1a99a66a46c44eb357..78d2294b7a8b768ed2b7047c54265ae8c7ecae6c 100644 (file)
@@ -527,7 +527,6 @@ if (!$columns && support("table")) {
                                echo "</div></fieldset>\n";
                        }
 
-                       echo (!$group && $select ? "" : script("tableCheck();"));
                }
 
                if ($adminer->selectImportPrint()) {
@@ -542,6 +541,7 @@ if (!$columns && support("table")) {
 
                echo "<p><input type='hidden' name='token' value='$token'></p>\n";
                echo "</form>\n";
+               echo (!$group && $select ? "" : script("tableCheck();"));
        }
 }
 
index 43990712e512ffd9c21f682ecc2baea3fd6cd751..e566f34b38c378ee3fd565ee097764d5bea76533 100644 (file)
@@ -1,3 +1,6 @@
+Adminer 4.5.1-dev:
+Fix counting selected rows after going back to select page
+
 Adminer 4.5.0 (released 2018-01-24):
 Display name of the object in confirmation when dropping it
 Display newlines in column comments (bug #573)