mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
- 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:
@@ -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'] : '.'));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user