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>2011-09-23 07:13:41 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2011-09-23 07:13:41 +0400
commite67a0a2531fff325477c5babcfffbf205ca755b3 (patch)
tree72ee9b0d6f6fe17a6189ddc46e363d408f59b2df /tbl_replace.php
parentac088aaee0194f28f435b63b978db96426cda642 (diff)
Spaces between parameters in function calls
Diffstat (limited to 'tbl_replace.php')
-rw-r--r--tbl_replace.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbl_replace.php b/tbl_replace.php
index 987fb0a779..b6da1ba655 100644
--- a/tbl_replace.php
+++ b/tbl_replace.php
@@ -554,7 +554,7 @@ if ($GLOBALS['is_ajax_request'] == true) {
}
/**Get the total row count of the table*/
- $extra_data['row_count'] = PMA_Table::countRecords($_REQUEST['db'],$_REQUEST['table']);
+ $extra_data['row_count'] = PMA_Table::countRecords($_REQUEST['db'], $_REQUEST['table']);
$extra_data['sql_query'] = PMA_showMessage($message, $GLOBALS['display_query']);
PMA_ajaxResponse($message, $message->isSuccess(), $extra_data);
}