diff options
author | jake%bugzilla.org <> | 2003-06-14 01:41:21 +0200 |
---|---|---|
committer | jake%bugzilla.org <> | 2003-06-14 01:41:21 +0200 |
commit | 7bd0d001e89b4c27865c1756c7bc4829867d6e58 (patch) | |
tree | 3d99acdbf36a5516c4c4ad6844f3393a353cb369 /docs/html/cust-change-permissions.html | |
parent | 6bab73fe02dc15f3a68dc29ac2e7ba1814fdfa1a (diff) | |
download | bugzilla-7bd0d001e89b4c27865c1756c7bc4829867d6e58.tar.gz bugzilla-7bd0d001e89b4c27865c1756c7bc4829867d6e58.tar.xz |
Fresh docs compile (first one w/a PDF version).
Diffstat (limited to 'docs/html/cust-change-permissions.html')
-rw-r--r-- | docs/html/cust-change-permissions.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/html/cust-change-permissions.html b/docs/html/cust-change-permissions.html index 465896d0b..3d240bc40 100644 --- a/docs/html/cust-change-permissions.html +++ b/docs/html/cust-change-permissions.html @@ -183,7 +183,7 @@ COLOR="#000000" ><PRE CLASS="programlisting" > if ($field eq "qacontact") { - if (UserInGroup("quality_assurance")) { + if (Bugzilla->user->groups("quality_assurance")) { return 1; } else { @@ -208,7 +208,7 @@ COLOR="#000000" ><PRE CLASS="programlisting" > if (($field eq "priority") && - ($vars->{'user'}{'login'} =~ /.*\@example\.com$/)) + (Bugzilla->user->email =~ /.*\@example\.com$/)) { if ($oldvalue eq "P1") { return 1; |