diff --git a/src/aphront/AphrontRequest.php b/src/aphront/AphrontRequest.php --- a/src/aphront/AphrontRequest.php +++ b/src/aphront/AphrontRequest.php @@ -192,11 +192,11 @@ } final public function isAjax() { - return $this->getExists(self::TYPE_AJAX); + return $this->getExists(self::TYPE_AJAX) && !$this->isQuicksand(); } final public function isWorkflow() { - return $this->getExists(self::TYPE_WORKFLOW); + return $this->getExists(self::TYPE_WORKFLOW) && !$this->isQuicksand(); } final public function isQuicksand() {