summaryrefslogtreecommitdiffstats
path: root/editusers.cgi
diff options
context:
space:
mode:
authorjake%acutex.net <>2001-05-24 12:10:47 +0200
committerjake%acutex.net <>2001-05-24 12:10:47 +0200
commit2c4ed3fd34b242ce91e22650446200b4a7e939e7 (patch)
tree502442bc8353c8dce7db9b3bc259ebea58fe71f5 /editusers.cgi
parentc04fc5ccd7740cef2e5455f7aec103a0b91ca62e (diff)
downloadbugzilla-2c4ed3fd34b242ce91e22650446200b4a7e939e7.tar.gz
bugzilla-2c4ed3fd34b242ce91e22650446200b4a7e939e7.tar.xz
Bug 71552 - Remove oldemailtech from Bugzilla
r= justdave@syndicomm.com
Diffstat (limited to 'editusers.cgi')
-rwxr-xr-xeditusers.cgi57
1 files changed, 9 insertions, 48 deletions
diff --git a/editusers.cgi b/editusers.cgi
index 3fe7ccb8b..a38f86b3c 100755
--- a/editusers.cgi
+++ b/editusers.cgi
@@ -97,10 +97,10 @@ sub EmitElement ($$)
# Displays the form to edit a user parameters
#
-sub EmitFormElements ($$$$$$$$)
+sub EmitFormElements ($$$$$$)
{
my ($user, $password, $realname, $groupset, $blessgroupset,
- $emailnotification, $disabledtext, $newemailtech) = @_;
+ $disabledtext) = @_;
print " <TH ALIGN=\"right\">Login name:</TH>\n";
EmitElement("user", $user);
@@ -119,25 +119,6 @@ sub EmitFormElements ($$$$$$$$)
}
print "</TR><TR>\n";
- if (!$newemailtech) {
- print " <TH ALIGN=\"right\">Email notification:</TH>\n";
- print qq{<TD><SELECT NAME="emailnotification">};
- foreach my $i (["ExcludeSelfChanges",
- "All qualifying bugs except those which I change"],
- ["CConly",
- "Only those bugs which I am listed on the CC line"],
- ["All", "All qualifying bugs"]) {
- my ($tag, $desc) = (@$i);
- my $selectpart = "";
- if ($tag eq $emailnotification) {
- $selectpart = " SELECTED";
- }
- print qq{<OPTION$selectpart VALUE="$tag">$desc\n};
- }
- print "</SELECT></TD>\n";
- print "</TR><TR>\n";
- }
-
print " <TH ALIGN=\"right\">Disable text:</TH>\n";
print " <TD ROWSPAN=2><TEXTAREA NAME=\"disabledtext\" ROWS=10 COLS=60>" .
value_quote($disabledtext) . "</TEXTAREA>\n";
@@ -397,7 +378,7 @@ if ($action eq 'add') {
print "<FORM METHOD=POST ACTION=editusers.cgi>\n";
print "<TABLE BORDER=0 CELLPADDING=4 CELLSPACING=0><TR>\n";
- EmitFormElements('', '', '', 0, 0, 'ExcludeSelfChanges', '', 1);
+ EmitFormElements('', '', '', 0, 0, '');
print "</TR></TABLE>\n<HR>\n";
print "<INPUT TYPE=SUBMIT VALUE=\"Add\">\n";
@@ -515,10 +496,9 @@ if ($action eq 'del') {
CheckUser($user);
# display some data about the user
- SendSQL("SELECT realname, groupset, emailnotification, newemailtech
- FROM profiles
+ SendSQL("SELECT realname, groupset FROM profiles
WHERE login_name=" . SqlQuote($user));
- my ($realname, $groupset, $emailnotification, $newemailtech) =
+ my ($realname, $groupset) =
FetchSQLData();
$realname ||= "<FONT COLOR=\"red\">missing</FONT>";
@@ -535,12 +515,6 @@ if ($action eq 'del') {
print " <TD VALIGN=\"top\">Real name:</TD>\n";
print " <TD VALIGN=\"top\">$realname</TD>\n";
- if ( !$newemailtech ) {
- print "</TR><TR>\n";
- print " <TD VALIGN=\"top\">E-Mail notification:</TD>\n";
- print " <TD VALIGN=\"top\">$emailnotification</TD>\n";
- }
-
print "</TR><TR>\n";
print " <TD VALIGN=\"top\">Group set:</TD>\n";
print " <TD VALIGN=\"top\">";
@@ -680,18 +654,17 @@ if ($action eq 'edit') {
CheckUser($user);
# get data of user
- SendSQL("SELECT password, realname, groupset, blessgroupset,
- emailnotification, disabledtext, newemailtech
+ SendSQL("SELECT password, realname, groupset, blessgroupset, disabledtext
FROM profiles
WHERE login_name=" . SqlQuote($user));
- my ($password, $realname, $groupset, $blessgroupset, $emailnotification,
- $disabledtext, $newemailtech) = FetchSQLData();
+ my ($password, $realname, $groupset, $blessgroupset,
+ $disabledtext) = FetchSQLData();
print "<FORM METHOD=POST ACTION=editusers.cgi>\n";
print "<TABLE BORDER=0 CELLPADDING=4 CELLSPACING=0><TR>\n";
EmitFormElements($user, $password, $realname, $groupset, $blessgroupset,
- $emailnotification, $disabledtext, $newemailtech);
+ $disabledtext);
print "</TR></TABLE>\n";
@@ -702,10 +675,6 @@ if ($action eq 'edit') {
print "<INPUT TYPE=HIDDEN NAME=\"realnameold\" VALUE=\"$realname\">\n";
print "<INPUT TYPE=HIDDEN NAME=\"groupsetold\" VALUE=\"$groupset\">\n";
print "<INPUT TYPE=HIDDEN NAME=\"blessgroupsetold\" VALUE=\"$blessgroupset\">\n";
- if (!$newemailtech) {
- print "<INPUT TYPE=HIDDEN NAME=\"emailnotificationold\" " .
- "VALUE=\"$emailnotification\">\n";
- }
print "<INPUT TYPE=HIDDEN NAME=\"disabledtextold\" VALUE=\"" .
value_quote($disabledtext) . "\">\n";
print "<INPUT TYPE=HIDDEN NAME=\"action\" VALUE=\"update\">\n";
@@ -731,8 +700,6 @@ if ($action eq 'update') {
my $realnameold = trim($::FORM{realnameold} || '');
my $password = trim($::FORM{password} || '');
my $passwordold = trim($::FORM{passwordold} || '');
- my $emailnotification = trim($::FORM{emailnotification} || '');
- my $emailnotificationold = trim($::FORM{emailnotificationold} || '');
my $disabledtext = trim($::FORM{disabledtext} || '');
my $disabledtextold = trim($::FORM{disabledtextold} || '');
my $groupsetold = trim($::FORM{groupsetold} || '0');
@@ -796,12 +763,6 @@ if ($action eq 'update') {
print "Updated ability to tweak permissions of other users.\n";
}
- if ($editall && $emailnotification ne $emailnotificationold) {
- SendSQL("UPDATE profiles
- SET emailnotification=" . SqlQuote($emailnotification) . "
- WHERE login_name=" . SqlQuote($userold));
- print "Updated email notification.<BR>\n";
- }
if(!Param('useLDAP')) {
if ($editall && $password ne $passwordold) {
my $q = SqlQuote($password);