Project

General

Profile

Bug #20053 ยป free.diff

Administrator Admin, 2009-02-19 12:41

View differences:

t3lib/class.t3lib_db.php (working copy)
while ($theTable = mysql_fetch_assoc($tables_result)) {
$whichTables[$theTable['Name']] = $theTable;
}
$this->sql_free_result($tables_result);
}
return $whichTables;
......
$output[$fieldRow['Field']] = $fieldRow;
}
$this->sql_free_result($columns_res);
return $output;
}
......
$output[] = $keyRow;
}
$this->sql_free_result($keyRes);
return $output;
}
......
while (($row = mysql_fetch_assoc($columns_res))) {
$output[$row['Charset']] = $row;
}
$this->sql_free_result($columns_res);
}
return $output;
    (1-1/1)