summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2012-01-21 01:58:51 +0000
committerivan <ivan>2012-01-21 01:58:51 +0000
commitc418b34fa051a2894a645f7df6d4dc1dfba12113 (patch)
treed8aa6a967d55c09a8a6ccadf2b0c9def46c67c25
parentcc8222b36f680b9f39370852be49807f033babc6 (diff)
fix 2.3-specific syntax error viewing sent messages, RT#16174
-rwxr-xr-xhttemplate/view/cust_msg.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/view/cust_msg.html b/httemplate/view/cust_msg.html
index 0992d8a26..f6ce4c5dc 100755
--- a/httemplate/view/cust_msg.html
+++ b/httemplate/view/cust_msg.html
@@ -38,8 +38,8 @@ readonly=1 cols=80 rows=20>
<%init>
my $curuser = $FS::CurrentUser::CurrentUser;
-die "access denied" if !$curuser->access_right('View email logs'))
- && !$curuser->access_right('Configuration');
+die "access denied" unless $curuser->access_right('View email logs')
+ || $curuser->access_right('Configuration');
my ($custmsgnum) = $cgi->keywords;
$custmsgnum =~ /^(\d+)$/ or die "illegal custmsgnum";