Move tableCheck() below </form>

This commit is contained in:
Jakub Vrana 2018-02-06 13:53:15 +01:00
parent f09a04ed09
commit d43b773214
3 changed files with 3 additions and 3 deletions

View file

@ -62,9 +62,9 @@ function connect_error() {
. "</div></fieldset>\n" . "</div></fieldset>\n"
: "" : ""
); );
echo script("tableCheck();");
echo "<input type='hidden' name='token' value='$token'>\n"; echo "<input type='hidden' name='token' value='$token'>\n";
echo "</form>\n"; echo "</form>\n";
echo script("tableCheck();");
} }
} }

View file

@ -45,7 +45,6 @@ foreach (process_list() as $i => $row) {
} }
?> ?>
</table> </table>
<?php echo script("tableCheck();"); ?>
<p> <p>
<?php <?php
if (support("kill")) { if (support("kill")) {
@ -55,3 +54,4 @@ if (support("kill")) {
?> ?>
<input type="hidden" name="token" value="<?php echo $token; ?>"> <input type="hidden" name="token" value="<?php echo $token; ?>">
</form> </form>
<?php echo script("tableCheck();"); ?>

View file

@ -26,6 +26,6 @@ if ($adminer->homepage()) {
} }
echo "</table>\n"; echo "</table>\n";
echo script("tableCheck();");
echo "</form>\n"; echo "</form>\n";
echo script("tableCheck();");
} }