fix the undefined error

This commit is contained in:
xmujay 2013-07-21 00:58:37 +08:00
parent 0817d6971e
commit b1eabfb597
4 changed files with 4 additions and 2 deletions

View File

@ -62,7 +62,7 @@ $html .= PMA_getHtmlForExportOptions(
$multi_values,
$num_tables_str,
$export_list,
$unlim_num_rows
$unlim_num_rows_str
);
$html .= '</form>';

View File

@ -685,7 +685,7 @@ function PMA_getHtmlForExportOptions(
$num_tables, $export_list, $unlim_num_rows
) {
global $cfg;
$html .= PMA_getHtmlForExportOptionHeader($export_type, $db, $table);
$html = PMA_getHtmlForExportOptionHeader($export_type, $db, $table);
$html .= PMA_getHtmlForExportOptionsMethod();
$html .= PMA_getHtmlForExportOptionsSelection($export_type, $multi_values);

View File

@ -1,6 +1,7 @@
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* object the server export page
*
* @package PhpMyAdmin
*/

View File

@ -1,6 +1,7 @@
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* object the server plugin page
*
* @package PhpMyAdmin
*/