diff options
author | ivan <ivan> | 2004-05-18 00:20:54 +0000 |
---|---|---|
committer | ivan <ivan> | 2004-05-18 00:20:54 +0000 |
commit | b1f529893b4ab0fc3599c904b5ad90256e7042ac (patch) | |
tree | 80ae9bda1a9a229641e00b7362efac0d3ef8f26d | |
parent | 6ef7ab16294f69d92c21c4a924e2e9ff9784c9e0 (diff) |
patch from randell lucas for order_pkg to return pkgnum also
-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 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 }; } |