Fix for bug 47914: buglist.cgi always had a not-logged-in footer if you were unlucky enough to have a login cookie that got corrupted in the shadow database. This patch makes buglist.cgi switch back to the primary database before looking up your login cookie for the footer.

Patch by Myk Melez <myk@mozilla.org>
r= justdave@syndicomm.com
This commit is contained in:
justdave%syndicomm.com 2001-06-21 02:02:30 +00:00
Родитель 462f0c35e7
Коммит 208706e674
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -1588,6 +1588,12 @@ if ($count > 0) {
print "</FORM>\n";
}
# 2001-06-20, myk@mozilla.org, bug 47914:
# Switch back from the shadow database to the regular database
# so that PutFooter() can determine the current user even if
# the "logincookies" table is corrupted in the shadow database.
SendSQL("USE $::db_name");
PutFooter();
if ($serverpush) {