From: ivan Date: Tue, 18 May 2004 00:20:53 +0000 (+0000) Subject: patch from randell lucas for order_pkg to return pkgnum also X-Git-Tag: BEFORE_FINAL_MASONIZE~1087 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=a2746023c2b286d67ab5e4d5777e8cb271525a13 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 3c0b0ac5a..77c1fc889 100644 --- a/FS/FS/ClientAPI/MyAccount.pm +++ b/FS/FS/ClientAPI/MyAccount.pm @@ -489,7 +489,7 @@ sub order_pkg { $cust_pkg->reexport; } - return { error => '' }; + return { error => '', pkgnum => $cust_pkg->pkgnum }; }