Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Przybylski <piotrprz@gmail.com>2011-07-12 19:43:45 +0400
committerPiotr Przybylski <piotrprz@gmail.com>2011-07-12 19:50:46 +0400
commitf14a4e567f457582b4fda51d3eed1aa1ba9ca82d (patch)
treebd53bec69ad9fc8f68864185b9c2b96071f03a01 /export.php
parent7802be3c48de27f14f4bc8e6acf331c3aff1951e (diff)
Unify comments for export plugins
Diffstat (limited to 'export.php')
-rw-r--r--export.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/export.php b/export.php
index 9471ba0c15..6137b96e7c 100644
--- a/export.php
+++ b/export.php
@@ -125,8 +125,7 @@ $time_start = time();
* Output handler for all exports, if needed buffering, it stores data into
* $dump_buffer, otherwise it prints thems out.
*
- * @param string the insert statement
- *
+ * @param string $line the insert statement
* @return bool Whether output suceeded
*/
function PMA_exportOutputHandler($line)
@@ -512,7 +511,7 @@ if ($export_type == 'server') {
}
if (function_exists('PMA_exportRoutines') && strpos($GLOBALS['sql_structure_or_data'], 'structure') !== false && isset($GLOBALS['sql_procedure_function'])) {
- PMA_exportRoutines($db);
+ PMA_exportRoutines($db);
}
$i = 0;