Author Topic: eror when viewing invetory trugh profile  (Read 2071 times)

Offline dada

eror when viewing invetory trugh profile
« on: March 01, 2007, 12:54:49 am »

Fatal error: Call to undefined function: () in /home/cashtalk/public_html/forum/Sources/shop/Shop-Inventory.php on line 271

this is my eror when i want to see inventory from profilem, i installed twice this mode didnt get any erors but problem is there, dono whats wrong but maybe you guys can fix it?

mod is 3.0 version and im on smf 1.1 RC2

Offline dada

Re: eror when viewing invetory trugh profile
« Reply #1 on: March 01, 2007, 03:34:11 pm »
well nor espond i see, well ehre is my website it use integrated SMF forum:

www.cashtalk.org

Now go to forum click on any topic and when you enter the posts you just click on peoples inventory like you can click on my too, it gives eror in shop-inventory in line 271 and i have no clue what for eror is that.

Offline Daniel15

Re: eror when viewing invetory trugh profile
« Reply #2 on: March 02, 2007, 05:26:29 pm »
In Sources/shop/Shop-Inventory.php, find:
Code: [Select]
$members[$index] = $func['htmlspecialchars']($func['strtolower'](stripslashes(trim($member))));

Replace with:
Code: [Select]
$members[$index] = htmlspecialchars(strtolower(stripslashes(trim($member))));

This should fix this issue :)