Fix for bug 139632: connect to the database in enter_bug.cgi in case it is time to rebuild the version cache, which needs a database

connection.
Patch by Myk Melez <myk@mozilla.org>.
2xr=gerv
This commit is contained in:
myk%mozilla.org 2002-04-24 21:28:36 +00:00
Родитель b8ea203342
Коммит 9d43de74a4
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -53,6 +53,11 @@ use vars qw(
%versions
);
# We have to connect to the database, even though we don't use it in this code,
# because we might occasionally rebuild the version cache, which causes tokens
# to get deleted from the database, which needs a database connection.
ConnectToDatabase();
# If we're using bug groups to restrict bug entry, we need to know who the
# user is right from the start.
confirm_login() if (Param("usebuggroupsentry"));