diff options
author | ivan <ivan> | 2010-01-16 23:06:31 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-01-16 23:06:31 +0000 |
commit | d5d685f021759dff69a662953899ed339c27d0a7 (patch) | |
tree | 4a1f18bc6b7a112c04b300f4f2a2ed1bb7563e24 /httemplate/search | |
parent | e65f1d2cf05689ae6cdc4780e5540c7df0208a6d (diff) |
fix searching for unlinked services? RT#7059
Diffstat (limited to 'httemplate/search')
-rw-r--r-- | httemplate/search/cust_svc.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/httemplate/search/cust_svc.html b/httemplate/search/cust_svc.html index 3beca4d83..2c17561f2 100644 --- a/httemplate/search/cust_svc.html +++ b/httemplate/search/cust_svc.html @@ -94,7 +94,9 @@ if ( length( $cgi->param('search_svc') ) ) { } #here is the agent virtualization -push @extra_sql, $FS::CurrentUser::CurrentUser->agentnums_sql; +push @extra_sql, $FS::CurrentUser::CurrentUser->agentnums_sql( + 'null_right' => 'View/link unlinked services' + ); my $extra_sql = ' WHERE '. join(' AND ', @extra_sql ); |