Bug - Fixed Problem searching mall

Bale

Minion
There seems to be a problem searching the mall for items that have non-standard characters.

Code:
[COLOR="#008000"]> ash mall_price($item[Pokëmann figurine: Bloodkip])[/COLOR]

Searching for "Pokëmann figurine: Bloodkip"...
Search complete.
Returned: -1

[COLOR="#008000"]> ash mall_price($item[Bloodkip])[/COLOR]

Returned: -1

[COLOR="#008000"]> ash mall_price($item[Alewife™ Ale])[/COLOR]

Searching for "Alewife™ Ale"...
Search complete.
Returned: 200

[COLOR="#008000"]> ash mall_price($item[Pokëmann figurine: Duck])[/COLOR]

Searching for "Pokëmann figurine: Duck"...
Search complete.
Returned: -1

[COLOR="#008000"]> ash is_tradeable($item[Pokëmann figurine: Duck])[/COLOR]

Returned: true

It seems not to effect all non-standard characers, but it does effect all Pokëmann figurines.
 
Last edited:

Veracity

Developer
Staff member
I'm curious: What would you type in the Mall Search page in the Browser to find a Pokëmonn figurine? I was able to search for "Bloodkip", but anything I tried to type that incorporated the weird character resulted in nothing.

Edit: Hmm. I got a success. Here is the link for the "next page" that KoL provided:

Code:
href='/mall.php?didadv=0&pudnuggler=Pok%26euml%3Bmann&category=allitems&...

So, convert to character entities and then url-encode...
 
Last edited:

Bale

Minion
Thank you. That was very puzzling to my OCD script. I'm pretty sure something changed because it had previously put figurines in my mall store without error.
 
Top