From ddc8b6b30361d35a304a2b0e596dafc154799dbf Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Fri, 18 May 2012 19:25:40 +0000 Subject: [PATCH] Opps ... --- inc/config/class_FrameworkConfiguration.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/config/class_FrameworkConfiguration.php b/inc/config/class_FrameworkConfiguration.php index 6743ab4b..71e0da4c 100644 --- a/inc/config/class_FrameworkConfiguration.php +++ b/inc/config/class_FrameworkConfiguration.php @@ -177,9 +177,9 @@ class FrameworkConfiguration implements Registerable { */ public final function unsetConfigEntry ($configKey) { // Is the configuration entry there? - if (!$this->isConfigurationEntrySet($configEntry)) { + if (!$this->isConfigurationEntrySet($configKey)) { // Entry was not found! - throw new NoConfigEntryException(array(__CLASS__, $configEntry), self::EXCEPTION_CONFIG_ENTRY_WAS_NOT_FOUND); + throw new NoConfigEntryException(array(__CLASS__, $configKey), self::EXCEPTION_CONFIG_ENTRY_WAS_NOT_FOUND); } // END - if // Unset it -- 2.30.2