Feature - Implemented Improve logging of mall searches

Veracity

Developer
Staff member
My session log is full of things like this:

Code:
mall.php?category=allitems&consumable_byme=0&weaponattribute=3&wearable_byme=0&nolimits=0&max_price=0&sortresultsby=price&justitems=0&x_cheapest=0&pudnuggler=%22grapefruit%22

which could be:

Code:
mallsearch "grapefruit"

Not to mention:

Code:
mall.php?pudnuggler=&category=booze&consumable_byme=0&weaponattribute=3&wearable_byme=0&nolimits=0&sortresultsby=price&justitems=0&max_price=0&x_cheapest=5&consumable_tier_1=0&consumable_tier_2=0&consumable_tier_3=0&consumable_tier_4=1&consumable_tier_5=1

could be:

Code:
mallsearch category "booze" (cheapest 5)

Those are generated by ASH mall_price( $item[ grapefruit] ) and mall_prices( "booze" ) calls, in particular, although "acquire" and "retrieve_item()" will also do comparable mall searches.
 
Top