From 558058d10ccf32922ab13469c93687735edc21c2 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Sat, 22 Nov 2014 23:13:41 +0000 Subject: [PATCH] Fix bad variable name --- app/models/Setting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/Setting.php b/app/models/Setting.php index f2f3bda0..1e4f2a02 100644 --- a/app/models/Setting.php +++ b/app/models/Setting.php @@ -36,7 +36,7 @@ */ public static function unknownSettingException($setting) { throw new \Exception( - sprintf('Unknown setting %s', $settingName) + sprintf('Unknown setting %s', $setting) ); } }