mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
Items:
* implemented enchantment conditions for meta gems * removed hardcoded static-domain in transfer-string Site: * gain rep for ACTION_REGISTER when logging in for the first time, using external auth * language-menu uses the same dropdown-icon as other menus Spell: * hide procChance of 100% or more ItemComparison: * fixed display of drag-icon * fixed single gems being moved to first empty socket in tooltips squelched some notices in quest.php and item.php
This commit is contained in:
@@ -41,7 +41,7 @@ class AjaxHandler
|
||||
if (empty($this->get['id']))
|
||||
return;
|
||||
|
||||
if ($_ = DB::Aowow()->selectRow('SELECT c2.id as zwei, c1.id as eins, IFNULL(c2.id, c1.id) AS id, IFNULL(c2.type, c1.type) AS type, IFNULL(c2.typeId, c1.typeId) AS typeId FROM ?_comments c1 LEFT JOIN ?_comments c2 ON c1.replyTo = c2.id WHERE c1.id = ?d', $this->get['id']))
|
||||
if ($_ = DB::Aowow()->selectRow('SELECT IFNULL(c2.id, c1.id) AS id, IFNULL(c2.type, c1.type) AS type, IFNULL(c2.typeId, c1.typeId) AS typeId FROM ?_comments c1 LEFT JOIN ?_comments c2 ON c1.replyTo = c2.id WHERE c1.id = ?d', $this->get['id']))
|
||||
header('Location: ?'.Util::$typeStrings[$_['type']].'='.$_['typeId'].'#comments:id='.$_['id'].($_['id'] != $this->get['id'] ? ':reply='.$this->get['id'] : null));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user