Fix PMA_DBI_field_name, fixes also bug #951226.
This commit is contained in:
@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
|
2004-05-10 Michal Čihař <michal@cihar.com>
|
||||||
|
* libraries/dbi/mysql.dbi.lib.php: Fix PMA_DBI_field_name, fixes also bug
|
||||||
|
#951226.
|
||||||
|
|
||||||
2004-05-10 Garvin Hicking <pma@supergarv.de>
|
2004-05-10 Garvin Hicking <pma@supergarv.de>
|
||||||
* db_details_structure.php, tbl_properties_structure.php: Fixed
|
* db_details_structure.php, tbl_properties_structure.php: Fixed
|
||||||
row-selection Javascript for Internet Explorer.
|
row-selection Javascript for Internet Explorer.
|
||||||
@@ -13,7 +17,7 @@ $Source$
|
|||||||
* main.php, css/phpmyadmin.css.php: Corrected <form> position
|
* main.php, css/phpmyadmin.css.php: Corrected <form> position
|
||||||
to XHTML compliance. Introduced "nospace" class.
|
to XHTML compliance. Introduced "nospace" class.
|
||||||
|
|
||||||
2004-05-05 Michal Čihař <michal@cihar.com>
|
2004-05-09 Michal Čihař <michal@cihar.com>
|
||||||
* lang/czech: Updated.
|
* lang/czech: Updated.
|
||||||
* tbl_properties_operations.php: Fixed documentation link.
|
* tbl_properties_operations.php: Fixed documentation link.
|
||||||
|
|
||||||
|
@@ -253,7 +253,7 @@ function PMA_DBI_field_len($result, $i) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function PMA_DBI_field_name($result, $i) {
|
function PMA_DBI_field_name($result, $i) {
|
||||||
return mysql_field_name($result, $field_index);
|
return mysql_field_name($result, $i);
|
||||||
}
|
}
|
||||||
|
|
||||||
function PMA_DBI_field_flags($result, $i) {
|
function PMA_DBI_field_flags($result, $i) {
|
||||||
|
Reference in New Issue
Block a user