Skip to content

Commit

Permalink
Fixed issue: small typ corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
lacrioque committed Nov 23, 2017
1 parent 4edc2a9 commit 0680152
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions application/controllers/admin/surveyadmin.php
Expand Up @@ -349,15 +349,15 @@ public function togglequickaction()
{
//
case null:
$save = SettingsUser::setUserSetting(quickaction_state, 1);
$save = SettingsUser::setUserSetting('quickaction_state', 1);
break;

case 0:
$save = SettingsUser::setUserSetting(quickaction_state, 1);
$save = SettingsUser::setUserSetting('quickaction_state', 1);
break;

case 1:
$save = SettingsUser::setUserSetting(quickaction_state, 0);
$save = SettingsUser::setUserSetting('quickaction_state', 0);
break;
}
return Yii::app()->getController()->renderPartial(
Expand Down

0 comments on commit 0680152

Please sign in to comment.