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:
authorMichal Čihař <mcihar@suse.cz>2012-06-04 14:07:04 +0400
committerMichal Čihař <mcihar@suse.cz>2012-06-04 14:07:04 +0400
commit9e4a145297b8c86ed76ab3828becf45c4cff3113 (patch)
tree36d7e9333e8a4ad917a3e7655d0c19e00d91ee19 /libraries
parent9e09c575d72906f1cb755b099c18ae1c186ae7aa (diff)
Correct wrapping
Diffstat (limited to 'libraries')
-rw-r--r--libraries/relation.lib.php18
1 files changed, 12 insertions, 6 deletions
diff --git a/libraries/relation.lib.php b/libraries/relation.lib.php
index f4b1821d49..41461bfdfa 100644
--- a/libraries/relation.lib.php
+++ b/libraries/relation.lib.php
@@ -1275,7 +1275,8 @@ function PMA_REL_renameTable($source_db, $target_db, $source_table, $target_tabl
{
// Move old entries from PMA-DBs to new table
if ($GLOBALS['cfgRelation']['commwork']) {
- PMA_REL_renameTable('column_info',
+ PMA_REL_renameTable(
+ 'column_info',
$source_db, $target_db,
$source_table, $target_table,
'db_name', 'table_name'
@@ -1286,7 +1287,8 @@ function PMA_REL_renameTable($source_db, $target_db, $source_table, $target_tabl
// moved, and not the whole DB.
if ($GLOBALS['cfgRelation']['displaywork']) {
- PMA_REL_renameTable('table_info',
+ PMA_REL_renameTable(
+ 'table_info',
$source_db, $target_db,
$source_table, $target_table,
'db_name', 'table_name'
@@ -1294,13 +1296,15 @@ function PMA_REL_renameTable($source_db, $target_db, $source_table, $target_tabl
}
if ($GLOBALS['cfgRelation']['relwork']) {
- PMA_REL_renameTable('relation',
+ PMA_REL_renameTable(
+ 'relation',
$source_db, $target_db,
$source_table, $target_table,
'foreign_db', 'foreign_table'
);
- PMA_REL_renameTable('relation',
+ PMA_REL_renameTable(
+ 'relation',
$source_db, $target_db,
$source_table, $target_table,
'master_db', 'master_table'
@@ -1315,7 +1319,8 @@ function PMA_REL_renameTable($source_db, $target_db, $source_table, $target_tabl
*/
if ($GLOBALS['cfgRelation']['pdfwork']) {
- PMA_REL_renameTable('table_coords',
+ PMA_REL_renameTable(
+ 'table_coords',
$source_db, $target_db,
$source_table, $target_table,
'db_name', 'table_name'
@@ -1323,7 +1328,8 @@ function PMA_REL_renameTable($source_db, $target_db, $source_table, $target_tabl
}
if ($GLOBALS['cfgRelation']['designerwork']) {
- PMA_REL_renameTable('designer_coords',
+ PMA_REL_renameTable(
+ 'designer_coords',
$source_db, $target_db,
$source_table, $target_table,
'db_name', 'table_name'