diff options
-rw-r--r-- | httemplate/elements/select-part_pkg.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/httemplate/elements/select-part_pkg.html b/httemplate/elements/select-part_pkg.html index 2127d9ab0..885bb806b 100644 --- a/httemplate/elements/select-part_pkg.html +++ b/httemplate/elements/select-part_pkg.html @@ -45,6 +45,7 @@ if ( exists($opt{'classnum'}) && defined($opt{'classnum'}) ) { } #else -1 or not specified, all classes, so don't set classnum } -$opt{'extra_sql'} .= ' AND '. FS::part_pkg->curuser_pkgs_sql; +$opt{'extra_sql'} .= ( keys(%hash) ? ' AND ' : ' WHERE ' ). + FS::part_pkg->curuser_pkgs_sql; </%init> |