my stuff is removed cuz of ungratefulness of community
Quote:
The normal itemshop.php from latest hen script (translated to English, code remains default):
If you do not enter a description for an item it has an undefined index error.
You must change this:
To this:PHP Code:<td class="tdunkel"><?PHP echo $getItems->Description; ?></td>
Also in register.php, this was already fixed by my old partner BEST, but it appears it was not released in the latest script from hen.PHP Code:<td class="tdunkel"><?PHP if(!empty($getItems->Description)) echo $getItems->Description; ?></td>
Change this:
To this:PHP Code:if($serverSettings['register_on'] && (!isset($_SESSION['user_admin']) && !checkInt($_SESSION['user_admin']) && !$_SESSION['user_admin']>=0)) {
Also, in is_buy.php of the latest script there is a typo of the word "vnum".PHP Code:if($serverSettings['register_on'] && (!isset($_SESSION['user_admin']) || !checkInt($_SESSION['user_admin']) && !$_SESSION['user_admin']>=0)) {
Change this:
To this:PHP Code:$getGroesse = compareItems($getItem->vnu);
PHP Code:$getGroesse = compareItems($getItem->vnum);