summaryrefslogtreecommitdiff
path: root/httemplate/misc/maestro-customer_status.html
diff options
context:
space:
mode:
Diffstat (limited to 'httemplate/misc/maestro-customer_status.html')
-rw-r--r--httemplate/misc/maestro-customer_status.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/httemplate/misc/maestro-customer_status.html b/httemplate/misc/maestro-customer_status.html
index 0c45bcd4b..8acae2b2a 100644
--- a/httemplate/misc/maestro-customer_status.html
+++ b/httemplate/misc/maestro-customer_status.html
@@ -3,11 +3,11 @@
my $return;
-my($query) = $cgi->keywords;
-if ( $query =~ /^(\d+)$/ ) {
+my($custnum, $svcnum) = $cgi->keywords;
+if ( $custnum =~ /^(\d+)$/ ) {
use FS::Maestro;
- $return = FS::Maestro::customer_status($1);
+ $return = FS::Maestro::customer_status($1, $svcnum);
} else {
$return = { 'error' => 'No custnum' };