diff --git a/db_structure.php b/db_structure.php
index ed5a481518..5bbc0e6f2a 100644
--- a/db_structure.php
+++ b/db_structure.php
@@ -132,7 +132,7 @@ $response->addHTML(
$response->addHTML(PMA_generate_common_hidden_inputs($db));
$response->addHTML(
- PMA_TableHeader($db_is_information_schema, $server_slave_status)
+ PMA_tableHeader($db_is_information_schema, $server_slave_status)
);
$i = $sum_entries = 0;
@@ -263,7 +263,7 @@ foreach ($tables as $keyname => $current_table) {
''
);
- $response->addHTML(PMA_TableHeader(false, $server_slave_status));
+ $response->addHTML(PMA_tableHeader(false, $server_slave_status));
}
list($do, $ignored) = PMA_getServerSlaveStatus(
diff --git a/libraries/structure.lib.php b/libraries/structure.lib.php
index 5d843b6ce1..3bdf0c1e6a 100644
--- a/libraries/structure.lib.php
+++ b/libraries/structure.lib.php
@@ -740,7 +740,7 @@ function PMA_getHtmlForRepairtable(
*
* @return html data
*/
-function PMA_TableHeader($db_is_information_schema = false, $replication = false)
+function PMA_tableHeader($db_is_information_schema = false, $replication = false)
{
$cnt = 0; // Let's count the columns...
@@ -1312,8 +1312,8 @@ function PMA_getHtmlForDropColumn($tbl_is_view, $db_is_information_schema,
if (! $tbl_is_view && ! $db_is_information_schema) {
$html_output .= '
'
. ''
. $titles['Change'] . '' . ' | ';
$html_output .= ''
@@ -2209,15 +2209,15 @@ function PMA_getHtmlForDisplayTableStats($showtable, $table_info_num_rows,
/**
* Displays HTML for changing one or more columns
*
- * @param string $db database name
- * @param string $table table name
- * @param array $selected the selected columns
- * @param string $action target script to call
+ * @param string $db database name
+ * @param string $table table name
+ * @param array $selected the selected columns
+ * @param string $action target script to call
+ *
+ * @return boolean $regenerate true if error occurred
*
- * @return boolean $regenerate true if error occurred
- *
*/
-function PMA_displayHtmlForColumnChange($db, $table, $selected, $action)
+function PMA_displayHtmlForColumnChange($db, $table, $selected, $action)
{
// $selected comes from multi_submits.inc.php
if (empty($selected)) {
@@ -2234,12 +2234,12 @@ function PMA_displayHtmlForColumnChange($db, $table, $selected, $action)
$fields_meta[] = PMA_DBI_get_columns($db, $table, $selected[$i], true);
}
$num_fields = count($fields_meta);
- // set these globals because tbl_columns_definition_form.inc.php
+ // set these globals because tbl_columns_definition_form.inc.php
// verifies them
- // @todo: refactor tbl_columns_definition_form.inc.php so that it uses
+ // @todo: refactor tbl_columns_definition_form.inc.php so that it uses
// function params
$GLOBALS['action'] = 'tbl_structure.php';
- $GLOBALS['num_fields'] = $num_fields;
+ $GLOBALS['num_fields'] = $num_fields;
// Get more complete field information.
// For now, this is done to obtain MySQL 4.1.2+ new TIMESTAMP options
@@ -2271,8 +2271,8 @@ function PMA_displayHtmlForColumnChange($db, $table, $selected, $action)
/**
* Update the table's structure based on $_REQUEST
*
- * @param string $db database name
- * @param string $table table name
+ * @param string $db database name
+ * @param string $table table name
*
* @return boolean $regenerate true if error occurred
*
@@ -2400,7 +2400,8 @@ function PMA_updateColumns($db, $table)
} else {
// An error happened while inserting/updating a table definition
$response->isSuccess(false);
- $response->addJSON('message',
+ $response->addJSON(
+ 'message',
PMA_Message::rawError(__('Query error') . ': '.PMA_DBI_getError())
);
$regenerate = true;
@@ -2411,8 +2412,10 @@ function PMA_updateColumns($db, $table)
/**
* Moves columns in the table's structure based on $_REQUEST
*
- * @param string $db database name
- * @param string $table table name
+ * @param string $db database name
+ * @param string $table table name
+ *
+ * @return void
*/
function PMA_moveColumns($db, $table)
{
|