bug 707516
This commit is contained in:
@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
|
||||
$Id$
|
||||
$Source$
|
||||
|
||||
2003-10-14 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* server_privileges.php3: bug 707516, sometimes db privileges
|
||||
are not shown
|
||||
|
||||
2003-10-12 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* Documentation.html: bug 821144: FAQ 6.21 needed clarification
|
||||
|
||||
|
@@ -1122,8 +1122,10 @@ if (empty($adduser) && empty($checkprivs)) {
|
||||
}
|
||||
$found_rows = array();
|
||||
while ($row = PMA_mysql_fetch_array($res, MYSQL_ASSOC)) {
|
||||
|
||||
while (empty($dbname) && $row2 && $row['Db'] > $row2['Db']) {
|
||||
$found_rows[] = $row2['Db'];
|
||||
|
||||
echo ' <tr>' . "\n"
|
||||
. ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . htmlspecialchars($row2['Db']) . '</td>' . "\n"
|
||||
. ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><tt>' . "\n"
|
||||
@@ -1140,6 +1142,7 @@ if (empty($adduser) && empty($checkprivs)) {
|
||||
$useBgcolorOne = !$useBgcolorOne;
|
||||
} // end while
|
||||
$found_rows[] = empty($dbname) ? $row['Db'] : $row['Table_name'];
|
||||
|
||||
echo ' <tr>' . "\n"
|
||||
. ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . htmlspecialchars(empty($dbname) ? $row['Db'] : $row['Table_name']) . '</td>' . "\n"
|
||||
. ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><tt>' . "\n"
|
||||
@@ -1164,7 +1167,11 @@ if (empty($adduser) && empty($checkprivs)) {
|
||||
. ' </tr>' . "\n";
|
||||
$useBgcolorOne = !$useBgcolorOne;
|
||||
} // end while
|
||||
while (empty($dbname) && $row2 = PMA_mysql_fetch_array($res2, MYSQL_ASSOC)) {
|
||||
|
||||
|
||||
//while (empty($dbname) && $row2 = PMA_mysql_fetch_array($res2, MYSQL_ASSOC)) {
|
||||
while (empty($dbname) && $row2) {
|
||||
|
||||
$found_rows[] = $row2['Db'];
|
||||
echo ' <tr>' . "\n"
|
||||
. ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . htmlspecialchars($row2['Db']) . '</td>' . "\n"
|
||||
@@ -1179,6 +1186,7 @@ if (empty($adduser) && empty($checkprivs)) {
|
||||
. ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><a href="server_privileges.php3?' . $url_query . '&username=' . urlencode($username) . '&hostname=' . urlencode($hostname) . '&dbname=' . urlencode($row2['Db']) . '&revokeall=1">' . $strRevoke . '</a></td>' . "\n"
|
||||
. ' </tr>' . "\n";
|
||||
$row2 = PMA_mysql_fetch_array($res2, MYSQL_ASSOC);
|
||||
|
||||
$useBgcolorOne = !$useBgcolorOne;
|
||||
} // end while
|
||||
if (empty($dbname)) {
|
||||
|
Reference in New Issue
Block a user