From ff21321f09918909f7e21f850b6617156323e332 Mon Sep 17 00:00:00 2001
From: =?utf8?q?Roland=20H=C3=A4der?= <roland@mxchange.org>
Date: Tue, 28 Jul 2009 21:39:06 +0000
Subject: [PATCH] Same fix for isActionSet()

---
 inc/wrapper-functions.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/inc/wrapper-functions.php b/inc/wrapper-functions.php
index 3622206589..1df653fb9b 100644
--- a/inc/wrapper-functions.php
+++ b/inc/wrapper-functions.php
@@ -511,7 +511,7 @@ function setAction ($newAction) {
 // Checks wether action is set and optionally aborts on miss
 function isActionSet ($abortOnMiss =  false) {
 	// Check for it
-	$isset = (!empty($GLOBALS['action']));
+	$isset = (isset($GLOBALS['action']));
 
 	// Should we abort here?
 	if (($abortOnMiss === true) && ($isset === false)) {
-- 
2.39.5