diff --git a/src/Callback.php b/src/Callback.php index d92b753ac4..75d9bf478e 100644 --- a/src/Callback.php +++ b/src/Callback.php @@ -91,7 +91,7 @@ public function terminateJson(AbstractView $view): void */ public function isTriggered(): bool { - return isset($_GET[self::URL_QUERY_TRIGGER_PREFIX . $this->urlTrigger]) || isset($_GET['__atk_reload']); + return isset($_GET[self::URL_QUERY_TRIGGER_PREFIX . $this->urlTrigger]); } /** diff --git a/src/UserAction/BasicExecutor.php b/src/UserAction/BasicExecutor.php index e0eb7a172b..44a2724e61 100644 --- a/src/UserAction/BasicExecutor.php +++ b/src/UserAction/BasicExecutor.php @@ -40,7 +40,7 @@ class BasicExecutor extends \Atk4\Ui\View implements ExecutorInterface public $disableMsg = 'Action is disabled and cannot be executed'; /** - * @var Button|array Button that trigger the action. Either as an array seed or object + * @var Button|array Button that trigger the action. Either as an array seed or object */ public $executorButton;