From 0230a614c04af4633fd9cb3d9216b720d474a4b7 Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" <> Date: Tue, 25 Jan 2000 15:53:26 +0000 Subject: Reworked preferences UI. Added ability to turn off "My bugs" link at 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. --- checksetup.pl | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'checksetup.pl') diff --git a/checksetup.pl b/checksetup.pl index 699ed8138..6f7f38559 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -669,6 +669,7 @@ $table{profiles} = emailnotification enum("ExcludeSelfChanges", "CConly", "All") not null default "ExcludeSelfChanges", disabledtext mediumtext not null, newemailtech tinyint not null, + mybugslink tinyint not null default 1, unique(login_name)'; @@ -677,6 +678,7 @@ $table{namedqueries} = 'userid mediumint not null, name varchar(64) not null, watchfordiffs tinyint not null, + linkinfooter tinyint not null, query mediumtext not null, unique(userid, name), @@ -1402,6 +1404,13 @@ if (GetIndexDef('profiles', 'login_name')->[1]) { } +# 2000-01-24 Added a new field to let people control whether the "My +# bugs" link appears at the bottom of each page. Also can control +# whether each named query should show up there. + +AddField('profiles', 'mybugslink', 'tinyint not null default 1'); +AddField('namedqueries', 'linkinfooter', 'tinyint not null'); + # # If you had to change the --TABLE-- definition in any way, then add your -- cgit v1.2.3-24-g4f1b