diff --git a/libraries/mult_submits.lib.php b/libraries/mult_submits.lib.php index 8cc1ce646e..16bc7461ca 100644 --- a/libraries/mult_submits.lib.php +++ b/libraries/mult_submits.lib.php @@ -408,6 +408,16 @@ function PMA_getHtmlForOtherActions($what, $action, $_url_params, $full_query) $html .= __('You are about to DESTROY a complete database!') . ' '; } $html .= __('Do you really want to execute the following query?'); + if($what == 'row_delete'){ + $response = array('Yes','No'); + foreach ($response as $resp){ + $html .= '
'; + $html .= PMA_URL_getHiddenInputs($_url_params); + $html .= ''; + $html .= ''; + $html .= '
'; + } + } $html .= ''; $html .= '' . $full_query . ''; $html .= '';