Fixed XHTML syntax problems
This commit is contained in:
@@ -27,6 +27,8 @@ if (isset($plugin_list)) {
|
||||
'mime_type' => 'text/x-sql',
|
||||
'options' => array());
|
||||
|
||||
$plugin_list['sql']['options'][] = array('type' => 'begin_group', 'name' => 'general_opts');
|
||||
|
||||
/* comments */
|
||||
$plugin_list['sql']['options'][] =
|
||||
array('type' => 'begin_subgroup', 'subgroup_header' => array('type' => 'bool', 'name' => 'include_comments', 'text' => __('Display comments <i>(includes info such as export timestamp, PHP version, and server version)</i>')));
|
||||
@@ -78,6 +80,8 @@ if (isset($plugin_list)) {
|
||||
array('type' => 'radio', 'name' => 'structure_or_data', 'values' => array('structure' => __('structure'), 'data' => __('data'), 'structure_and_data' => __('structure and data')));
|
||||
$plugin_list['sql']['options'][] = array('type' => 'end_subgroup');
|
||||
|
||||
$plugin_list['sql']['options'][] = array('type' => 'end_group');
|
||||
|
||||
/* begin Structure options */
|
||||
if (!$hide_structure) {
|
||||
$plugin_list['sql']['options'][] =
|
||||
@@ -148,10 +152,10 @@ if (isset($plugin_list)) {
|
||||
array('type' => 'begin_subgroup', 'subgroup_header' => array('type' => 'message_only', 'text' => __('Syntax to use when inserting data:')));
|
||||
$plugin_list['sql']['options'][] =
|
||||
array('type' => 'radio', 'name' => 'insert_syntax', 'values' => array(
|
||||
'complete' => __('include column names in every <code>INSERT</code> statement <br> Example: <code>INSERT INTO tbl_name (col_A,col_B,col_C) VALUES (1,2,3)</code>'),
|
||||
'extended' => __('insert multiple rows in every <code>INSERT</code> statement<br> Example: <code>INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), (7,8,9)</code>'),
|
||||
'both' => __('both of the above<br> Example: <code>INSERT INTO tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)</code>'),
|
||||
'none' => __('neither of the above<br> Example: <code>INSERT INTO tbl_name VALUES (1,2,3)</code>')));
|
||||
'complete' => __('include column names in every <code>INSERT</code> statement <br /> Example: <code>INSERT INTO tbl_name (col_A,col_B,col_C) VALUES (1,2,3)</code>'),
|
||||
'extended' => __('insert multiple rows in every <code>INSERT</code> statement<br /> Example: <code>INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), (7,8,9)</code>'),
|
||||
'both' => __('both of the above<br /> Example: <code>INSERT INTO tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)</code>'),
|
||||
'none' => __('neither of the above<br /> Example: <code>INSERT INTO tbl_name VALUES (1,2,3)</code>')));
|
||||
$plugin_list['sql']['options'][] =
|
||||
array('type' => 'end_subgroup');
|
||||
|
||||
|
Reference in New Issue
Block a user