Coding standards.

This commit is contained in:
Alexander M. Turek
2003-02-19 13:22:34 +00:00
parent a8960bd454
commit e89f9860bf
2 changed files with 8 additions and 5 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2003-02-19 Alexander M. Turek <rabus@users.sourceforge.net>
* libraries/display_tbl.lib.php3: Coding standards.
2003-02-18 Marc Delisle <lem9@users.sourceforge.net> 2003-02-18 Marc Delisle <lem9@users.sourceforge.net>
* sql.php3: bug 649665: undefined variables with UNION, and * sql.php3: bug 649665: undefined variables with UNION, and
also get the correct row count also get the correct row count

View File

@@ -564,7 +564,7 @@ if (!defined('PMA_DISPLAY_TBL_LIB_INCLUDED')) {
// for the sort expression (avoids problems with queries // for the sort expression (avoids problems with queries
// like "SELECT id, count(id)..." and clicking to sort // like "SELECT id, count(id)..." and clicking to sort
// on id or on count(id) ) // on id or on count(id) )
$is_in_sort = (PMA_backquote($fields_meta[$i]->name)==$sort_expression?TRUE:FALSE); $is_in_sort = (PMA_backquote($fields_meta[$i]->name) == $sort_expression ? TRUE : FALSE);
} }
// 2.1.3 Checks if the table name is required (it's the case // 2.1.3 Checks if the table name is required (it's the case
// for a query with a "JOIN" statement and if the column // for a query with a "JOIN" statement and if the column