Little code reorganistaion (RFE #957308), removed some remaining php3 compatibility code in SQL parser.
This commit is contained in:
@@ -149,7 +149,7 @@ function PMA_mysql_fetch_array($result, $type = FALSE) {
|
||||
$ret = array();
|
||||
$num = mysql_num_fields($result);
|
||||
$i = 0;
|
||||
for($i = 0; $i < $num; $i++) {
|
||||
for ($i = 0; $i < $num; $i++) {
|
||||
$name = mysql_field_name($result, $i);
|
||||
$flags = mysql_field_flags($result, $i);
|
||||
/* Field is BINARY (either marked manually, or it is BLOB) => do not convert it */
|
||||
|
Reference in New Issue
Block a user