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:
authorMadhura Jayaratne <madhura.cj@gmail.com>2012-06-02 21:15:03 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2012-06-02 21:15:03 +0400
commit8ccb0953076bef8660566134393d7ed35ca4557e (patch)
treeef6540ba71e600d61da71220ec50f925fe182ade /libraries
parent9398f99503902ea7d8775c0eceb389cc273edd46 (diff)
Wrap some long lines
Diffstat (limited to 'libraries')
-rw-r--r--libraries/import.lib.php20
1 files changed, 12 insertions, 8 deletions
diff --git a/libraries/import.lib.php b/libraries/import.lib.php
index bdc396f0ed..05aed11a83 100644
--- a/libraries/import.lib.php
+++ b/libraries/import.lib.php
@@ -333,16 +333,20 @@ function PMA_importGetNextChunk($size = 32768)
*
* This functions uses recursion to build the Excel column name.
*
- * The column number (1-26) is converted to the responding ASCII character (A-Z) and returned.
+ * The column number (1-26) is converted to the responding
+ * ASCII character (A-Z) and returned.
*
* If the column number is bigger than 26 (= num of letters in alfabet),
- * an extra character needs to be added. To find this extra character, the number is divided by 26
- * and this value is passed to another instance of the same function (hence recursion).
- * In that new instance the number is evaluated again, and if it is still bigger than 26, it is divided again
- * and passed to another instance of the same function. This continues until the number is smaller than 26.
- * Then the last called function returns the corresponding ASCII character to the function that called it.
+ * an extra character needs to be added. To find this extra character,
+ * the number is divided by 26 and this value is passed to another instance
+ * of the same function (hence recursion). In that new instance the number is
+ * evaluated again, and if it is still bigger than 26, it is divided again
+ * and passed to another instance of the same function. This continues until
+ * the number is smaller than 26. Then the last called function returns
+ * the corresponding ASCII character to the function that called it.
* Each time a called function ends an extra character is added to the column name.
- * When the first function is reached, the last character is addded and the complete column name is returned.
+ * When the first function is reached, the last character is addded and the complete
+ * column name is returned.
*
* @access public
*
@@ -1098,7 +1102,7 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = null,
*/
/* Add the viewable structures from $additional_sql
- * to $tables so they are also displayed
+ * to $tables so they are also displayed
*/
$view_pattern = '@VIEW `[^`]+`\.`([^`]+)@';
$table_pattern = '@CREATE TABLE IF NOT EXISTS `([^`]+)`@';