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>2013-06-11 18:27:31 +0400
committerMichal Čihař <mcihar@suse.cz>2013-06-11 18:27:31 +0400
commit34dce1d3b4ec0dec16fc8c0878f93f36311bc606 (patch)
treea28d50a1dcf21c291a9a0ccaa4b0fe7b36612a6a /tbl_addfield.php
parent30428449bbb507f9ece252359f7b21905679ef5d (diff)
Various coding style improvements
Diffstat (limited to 'tbl_addfield.php')
-rw-r--r--tbl_addfield.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/tbl_addfield.php b/tbl_addfield.php
index 499cb21ef0..4b2c3fe216 100644
--- a/tbl_addfield.php
+++ b/tbl_addfield.php
@@ -59,7 +59,9 @@ if (isset($_REQUEST['do_save_data'])) {
// on this db.
$GLOBALS['dbi']->selectDb($db)
or PMA_Util::mysqlDie(
- $GLOBALS['dbi']->getError(), 'USE ' . PMA_Util::backquote($db), '', $err_url
+ $GLOBALS['dbi']->getError(),
+ 'USE ' . PMA_Util::backquote($db), '',
+ $err_url
);
$sql_query = 'ALTER TABLE ' .
PMA_Util::backquote($table) . ' ' . $sql_statement . ';';