summaryrefslogtreecommitdiff
path: root/httemplate/browse
diff options
context:
space:
mode:
authormark <mark>2009-12-29 01:00:48 +0000
committermark <mark>2009-12-29 01:00:48 +0000
commit09b21d0180c2ea23c7dd0b6611d26a4af184a56d (patch)
tree1884bc83b2c2a6ca9051f826adf1837a79ac1a45 /httemplate/browse
parentb249b6d799647050468ead9cfcbd1e5ebbb026cc (diff)
Add Browse attachments ACL (RT#4964)
Diffstat (limited to 'httemplate/browse')
-rwxr-xr-xhttemplate/browse/cust_attachment.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/httemplate/browse/cust_attachment.html b/httemplate/browse/cust_attachment.html
index d95f2b18c..e19259d05 100755
--- a/httemplate/browse/cust_attachment.html
+++ b/httemplate/browse/cust_attachment.html
@@ -62,7 +62,8 @@
<%init>
my $curuser = $FS::CurrentUser::CurrentUser;
-die "access denied" if !$curuser->access-right('View attachments');
+die "access denied" if !$curuser->access_right('View attachments')
+ or !$curuser->access_right('Browse attachments');
my $conf = new FS::Conf;