- BaseType: skip empty arrays in condition

- BaseFilter: defined selectAll / selectNone magic numbers
- Item:
   * fixed formating error for required arena rating
   * filters for purchasablewith -item; -currency; -honor; -arena; reqarenarating
- Zone:
   * removed extra escape for globals
   * token changes to ZoneList... still not really usable
- Events: prevent selecting arbitrary related events on empty list
- Factions:
   * added filter-links to relTabs
   * added relTab for factionspecific GameObjects
- Spell:
   * parse information for aura:forceReaction
   * added relTab Zones to display info from spell_area
- JS:
   * added display of subzones to listview-template: zone
   * reworked condition to display multiple conditions
   * added race and gender conditions

typos.. they are never entirely gone
This commit is contained in:
Sarjuuk
2014-04-20 11:59:47 +02:00
parent d34838ea2c
commit 48cec63e1d
22 changed files with 552 additions and 198 deletions

View File

@@ -239,7 +239,7 @@ class AjaxHandler
*/
private function handleComment()
{
switch ($this->param[0])
switch ($this->params[0])
{
case 'rating':
return '{"success":true,"error":"","up":7,"down":9}';
@@ -252,7 +252,7 @@ class AjaxHandler
private function handleLocale() // not sure if this should be here..
{
User::setLocale($this->param[0]);
User::setLocale($this->params[0]);
User::writeCookie();
header('Location: '.(isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : '.'));
}