Skip to content

Commit

Permalink
SimpleDB: Disable searching database
Browse files Browse the repository at this point in the history
  • Loading branch information
vrana committed Jul 12, 2013
1 parent 127b3f6 commit 352f298
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adminer/db.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
echo (support("copy") ? " <input type='submit' name='copy' value='" . lang('Copy') . "'>" : "");
echo "\n";
}
echo "<input type='hidden' name='all' value='' onclick=\"selectCount('selected', formChecked(this, /^(tables|views)\[/)); selectCount('selected2', formChecked(this, /^tables\[/) || $tables);\">\n"; // used by trCheck()
echo "<input type='hidden' name='all' value='' onclick=\"selectCount('selected', formChecked(this, /^(tables|views)\[/));" . (support("table") ? " selectCount('selected2', formChecked(this, /^tables\[/) || $tables);" : "") . "\">\n"; // used by trCheck()
echo "<input type='hidden' name='token' value='$token'>\n";
echo "</div></fieldset>\n";
}
Expand Down

0 comments on commit 352f298

Please sign in to comment.