From 53f568847fe02bd542f3e3f5c37bb71a1a9ff63a Mon Sep 17 00:00:00 2001 From: kremsy Date: Mon, 9 Dec 2013 09:11:19 +0100 Subject: [PATCH] small fix --- application/core/Settings/SettingManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/core/Settings/SettingManager.php b/application/core/Settings/SettingManager.php index bd3d59d6..834ec7df 100644 --- a/application/core/Settings/SettingManager.php +++ b/application/core/Settings/SettingManager.php @@ -139,7 +139,7 @@ class SettingManager { if ($type === self::TYPE_ARRAY) { return explode($this->arrayDelimiter, $value); } - trigger_error('Unsupported setting type. ' . print_r($param, true)); + trigger_error('Unsupported setting type. ' . print_r($type, true)); return $value; }