diff options
author | Mark Wells <mark@freeside.biz> | 2016-02-25 13:39:17 -0800 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2016-02-27 21:12:17 -0800 |
commit | 1872f4b9846ea77589a45a6b38654fc157f1f6f4 (patch) | |
tree | e18c20417b79a2f8b905f118695bee418a87aa7d | |
parent | 8567decee40403c0cb821a8389bfe5c9618a27af (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; } |