diff options
author | Mark Wells <mark@freeside.biz> | 2016-02-25 13:39:17 -0800 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2016-02-25 17:11:10 -0800 |
commit | 50f247ce6da7497428ce772d3c37c6cba3b9c736 (patch) | |
tree | 02bfddd048b2a008deefffc69f68c35e04cacf5e | |
parent | 2e49e11b18901a0d0cdace8d0dd8b06a5ac25262 (diff) |
fix UI nit
-rw-r--r-- | httemplate/elements/tr-part_pkg-taxproducts.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/elements/tr-part_pkg-taxproducts.html b/httemplate/elements/tr-part_pkg-taxproducts.html index ad464ca77..c57232c08 100644 --- a/httemplate/elements/tr-part_pkg-taxproducts.html +++ b/httemplate/elements/tr-part_pkg-taxproducts.html @@ -24,7 +24,7 @@ my $pkgpart = delete($opt{pkgpart}); my %pkg_options; if ($pkgpart) { my $part_pkg = FS::part_pkg->by_key($pkgpart); - my %pkg_options = $part_pkg->options; + %pkg_options = $part_pkg->options; $pkg_options{'usage_taxproductnum_'} = $part_pkg->taxproductnum; } |