diff options
author | ivan <ivan> | 2004-05-18 00:20:53 +0000 |
---|---|---|
committer | ivan <ivan> | 2004-05-18 00:20:53 +0000 |
commit | a2746023c2b286d67ab5e4d5777e8cb271525a13 (patch) | |
tree | d2ea7a8c7ac8a30eeb92a62358fe235b118f1534 /FS | |
parent | e975ed0585280f4cbb90b02f57114dedc43f58be (diff) |
patch from randell lucas for order_pkg to return pkgnum also
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/ClientAPI/MyAccount.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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 }; } |