From: ivan Date: Tue, 18 May 2004 00:20:54 +0000 (+0000) Subject: patch from randell lucas for order_pkg to return pkgnum also X-Git-Tag: freeside_1_4_2beta1~97 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=b1f529893b4ab0fc3599c904b5ad90256e7042ac;p=freeside.git patch from randell lucas for order_pkg to return pkgnum also --- diff --git a/FS/FS/ClientAPI/MyAccount.pm b/FS/FS/ClientAPI/MyAccount.pm index a42c306ce..81da5bcb1 100644 --- a/FS/FS/ClientAPI/MyAccount.pm +++ b/FS/FS/ClientAPI/MyAccount.pm @@ -275,7 +275,7 @@ sub order_pkg { $cust_pkg->reexport; } - return { error => '' }; + return { error => '', pkgnum => $cust_pkg->pkgnum }; }