add quantity to shop and home; allow for much larger messages

This commit is contained in:
Michael Erdely 2024-10-26 19:51:04 -04:00
parent add13754f5
commit 2e44329b53
5 changed files with 12 additions and 1 deletions

View file

@ -172,6 +172,10 @@ else {
$sortby = "source $sortdir, rankorder, name";
$sort = "source";
break;
case "quantity":
$sortby = "quantity $sortdir, rankorder, name";
$sort = "quantity";
break;
case "price":
$sortby = "price $sortdir, rankorder, name";
$sort = "price";