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:
authorMarc Delisle <marc@infomarc.info>2010-12-04 14:41:10 +0300
committerMarc Delisle <marc@infomarc.info>2010-12-04 14:41:10 +0300
commit79f320e95104ba4017d1ad78b81c3964c7df4871 (patch)
tree0c2c4409b4cda53a9229fd3c8022db56812abb99 /db_qbe.php
parent9d9d88b83f82a2026336f19140c23a313d75bd56 (diff)
remove author names
Diffstat (limited to 'db_qbe.php')
-rw-r--r--db_qbe.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/db_qbe.php b/db_qbe.php
index f4f4e85c31..ea95884b9c 100644
--- a/db_qbe.php
+++ b/db_qbe.php
@@ -246,7 +246,7 @@ for ($x = 0; $x < $col; $x++) {
// If they have chosen all fields using the * selector,
// then sorting is not available
- // Robbat2 - Fix for Bug #570698
+ // Fix for Bug #570698
if (isset($Sort[$x]) && isset($Field[$x])
&& substr($Field[$x], -2) == '.*') {
$Sort[$x] = '';
@@ -936,7 +936,7 @@ for ($x = 0; $x < $col; $x++) {
if (!empty($curField[$x]) && !empty($curSort[$x])) {
// if they have chosen all fields using the * selector,
// then sorting is not available
- // Robbat2 - Fix for Bug #570698
+ // Fix for Bug #570698
if (substr($curField[$x], -2) != '.*') {
$qry_orderby .= $curField[$x] . ' ' . $curSort[$x];
$last_orderby = 1;