mirror of
https://github.com/vrana/adminer.git
synced 2025-08-08 07:36:44 +02:00
Remove number of selected rows from confirmation
This commit is contained in:
@@ -164,11 +164,10 @@ function select_input($attrs, $options, $value = "", $placeholder = "") {
|
||||
}
|
||||
|
||||
/** Get onclick confirmation
|
||||
* @param string JavaScript expression
|
||||
* @return string
|
||||
*/
|
||||
function confirm($count = "") {
|
||||
return " onclick=\"return confirm('" . lang('Are you sure?') . ($count ? " (' + $count + ')" : "") . "');\"";
|
||||
function confirm() {
|
||||
return " onclick=\"return confirm('" . lang('Are you sure?') . "');\"";
|
||||
}
|
||||
|
||||
/** Print header for hidden fieldset (close by </div></fieldset>)
|
||||
|
Reference in New Issue
Block a user