summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2009-03-15 23:12:24 +0000
committerivan <ivan>2009-03-15 23:12:24 +0000
commit195eacc970db1e562d7a1dd9103bc167ad795ccf (patch)
tree8e316617b5752c5404fb61a431b56be1f15a11aa
parent92e281ccf685d268b21739898428ffb8ed758f01 (diff)
fix old self-service for new-style cust_main->order_pkgs
-rw-r--r--FS/FS/ClientAPI/MyAccount.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/ClientAPI/MyAccount.pm b/FS/FS/ClientAPI/MyAccount.pm
index c953c62f6..7d9dec15d 100644
--- a/FS/FS/ClientAPI/MyAccount.pm
+++ b/FS/FS/ClientAPI/MyAccount.pm
@@ -868,7 +868,7 @@ sub order_pkg {
tie my %hash, 'Tie::RefHash';
%hash = ( $cust_pkg => \@svc );
#msgcat
- $error = $cust_main->order_pkgs( \%hash, '', 'noexport' => 1 );
+ $error = $cust_main->order_pkgs( \%hash, 'noexport' => 1 );
return { 'error' => $error } if $error;
my $conf = new FS::Conf;