bug #1751553 Drop-down instead of input when editing

This commit is contained in:
Marc Delisle
2007-08-14 21:17:55 +00:00
parent 5c298c3612
commit 1c5cd48b45
2 changed files with 2 additions and 1 deletions

View File

@@ -100,6 +100,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
- [export] patch #1766633 Incorrect export with specified MySQL port, - [export] patch #1766633 Incorrect export with specified MySQL port,
thanks to Juergen Wind thanks to Juergen Wind
+ [lang] Catalan update, thanks to Xavier Navarro + [lang] Catalan update, thanks to Xavier Navarro
- bug #1751553 Drop-down instead of input when editing
2.10.3.0 (2007-07-20) 2.10.3.0 (2007-07-20)

View File

@@ -60,7 +60,7 @@ if ($foreigners && isset($foreigners[$field])) {
} }
$disp = PMA_DBI_query($f_query_main . $f_query_from . $f_query_filter . $f_query_order . $f_query_limit); $disp = PMA_DBI_query($f_query_main . $f_query_from . $f_query_filter . $f_query_order . $f_query_limit);
if ($disp) { if ($disp && PMA_DBI_num_rows($disp) > 0) {
// garvin: If a resultset has been created, pre-cache it in the $disp_row array // garvin: If a resultset has been created, pre-cache it in the $disp_row array
// This helps us from not needing to use mysql_data_seek by accessing a pre-cached // This helps us from not needing to use mysql_data_seek by accessing a pre-cached
// PHP array. Usually those resultsets are not that big, so a performance hit should // PHP array. Usually those resultsets are not that big, so a performance hit should