Completed
Pull Request — develop (#60)
by Tony
08:13
created
app/Http/Controllers/SettingsController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
         $type = Input::get('type');
73 73
         if ($type == 'settings-value' || $type == 'settings-array') {
74 74
             $key = Input::get('key');
75
-            if(Settings::isReadOnly($key)) {
75
+            if (Settings::isReadOnly($key)) {
76 76
                 return response('Read only setting', 422);
77 77
             }
78 78
             Settings::set($key, Input::get('value'));
Please login to merge, or discard this patch.