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:
authorChanaka Indrajith <pe.chanaka.ck@gmail.com>2014-05-17 22:44:27 +0400
committerChanaka Indrajith <pe.chanaka.ck@gmail.com>2014-05-17 22:44:27 +0400
commit39b5f07dfb9fa57845c9c676c494bca99e82697b (patch)
treef3fcc101728df6932eb9606e1e488462ac4c5744 /tbl_create.php
parent52bf8f03ede1e8467d68f418643fe25d9039dba6 (diff)
Fixed some documentation issues raised by scrutinizer
Signed-off-by: Chanaka Indrajith <pe.chanaka.ck@gmail.com>
Diffstat (limited to 'tbl_create.php')
-rw-r--r--tbl_create.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tbl_create.php b/tbl_create.php
index 6ff9ed0886..1b5184c313 100644
--- a/tbl_create.php
+++ b/tbl_create.php
@@ -18,7 +18,7 @@ PMA_Util::checkParameters(array('db'));
/* Check if database name is empty */
if (strlen($db) == 0) {
PMA_Util::mysqlDie(
- __('The database name is empty!'), '', '', 'index.php'
+ __('The database name is empty!'), '', false, 'index.php'
);
}
@@ -29,7 +29,7 @@ if (!$GLOBALS['dbi']->selectDb($db)) {
PMA_Util::mysqlDie(
sprintf(__('\'%s\' database does not exist.'), htmlspecialchars($db)),
'',
- '',
+ false,
'index.php'
);
}
@@ -39,7 +39,7 @@ if ($GLOBALS['dbi']->getColumns($db, $table)) {
PMA_Util::mysqlDie(
sprintf(__('Table %s already exists!'), htmlspecialchars($table)),
'',
- '',
+ false,
'db_structure.php?' . PMA_URL_getCommon($db)
);
}