- implemented use of itemExtendedCost and fueled some more item-tabs with it

- tinkering with learned spells and added teach-tabs to item.php
- required arenaRating in item tooltips
- updated js-functions handling currencies
- updated Markup with correct links
- i probably forgot to add sql
This commit is contained in:
Sarjuuk
2013-12-08 17:49:39 +01:00
parent 6c7006eeb2
commit 07ee8213da
18 changed files with 761 additions and 337 deletions

View File

@@ -375,9 +375,11 @@ if (!$smarty->loadCache($cacheKey, $pageData, $filter))
if ($cats[0] !== null) // !any Spell (php loose comparison: (null == 0) is true)
{
$conditions[] = 'OR';
$conditions[] = ['s.typeCat', 0];
$conditions[] = ['s.cuFlags', SPELL_CU_EXCLUDE_CATEGORY_SEARCH, '&'];
$conditions[] = array(
'OR',
['s.typeCat', 0],
['s.cuFlags', SPELL_CU_EXCLUDE_CATEGORY_SEARCH, '&']
);
break;
}