| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
bottom. Made "My bugs" show bugs you own AND bugs you submitted.
Added ability to display your named queries in the footer. Many
random bugfixes.
|
|
|
|
| |
Added "My votes" link to footer. Other minor voting-related fixes.
|
| |
|
|
|
|
|
|
|
|
|
| |
different fields we keep an activity log on. The bugs_activity table
now has a pointer into that table instead of recording the name directly.
Set up a new, highly experimental email-notification scheme. To turn
it on, the maintainer has to turn on the "New email tech" param, and
then individual users have to turn on the "New email tech" preference.
|
|
|
|
| |
both was causing corruption on about 1 in 40 passwords.)
|
|
|
|
|
|
|
| |
me. Added a footer to every page. Add some options to do things like
display checkboxes instead of scrolling lists, and a new formatting
for email diffs, and show list items capitalized instead of all upper
case.
|
| |
|
|
|
|
| |
be fixed.
|
| |
|
|
|
|
|
| |
entry of the user's realname. Note that nothing actually makes use of
this info at present.
|
|
|
|
|
| |
rewording "return to query page" for pages where that is not always true.
Also add two options to the main index.html
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
crypt'd version of the password in the database, and check against
that. (This is silly, because we're also keeping the plaintext
version there, but I have plans...) Stop passing the plaintext
password around as a cookie; instead, we have a cookie that references
a record in a new database table, logincookies.
IMPORTANT: if updating from an older version of Bugzilla, you must run
the following commands to keep things working:
./makelogincookiestable.sh
echo "alter table profiles add column cryptpassword varchar(64);" | mysql bugs
echo "update profiles set cryptpassword = encrypt(password,substring(rand(),3, 4));" | mysql bugs
|
|
|