Skip to content

Commit

Permalink
Merge pull request #14437 from aswaniprakash/PMA_14426
Browse files Browse the repository at this point in the history
Drop table issue on copying tables fixed #14426
  • Loading branch information
MauricioFauth committed Aug 16, 2018
2 parents d46c4a3 + 8fc4d86 commit c634db5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/classes/MultSubmits.php
Expand Up @@ -416,7 +416,7 @@ public function getHtmlForCopyMultipleTables($action, array $urlParams)
$html .= '<label for="what_data">' . __('Structure and data') . '</label><br>';
$html .= '<input type="radio" id ="what_dataonly" value="dataonly" name="what"/>';
$html .= '<label for="what_dataonly">' . __('Data only') . '</label><br><br>';
$html .= '<input type="checkbox" id="checkbox_drop" value="1" name="drop_if_exists"/>';
$html .= '<input type="checkbox" id="checkbox_drop" value="true" name="drop_if_exists"/>';
$html .= '<label for="checkbox_drop">' . __('Add DROP TABLE') . '</label><br>';
$html .= '<input type="checkbox" id="checkbox_auto_increment_cp" value="1" name="sql_auto_increment"/>';
$html .= '<label for="checkbox_auto_increment_cp">' . __('Add AUTO INCREMENT value') . '</label><br>';
Expand Down

0 comments on commit c634db5

Please sign in to comment.