Skip to content

Commit

Permalink
Dev Text changes
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Jan 26, 2022
1 parent 3ae4ec8 commit b450eab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/controllers/admin/surveyadmin.php
Expand Up @@ -85,8 +85,8 @@ public function deleteMultiple()
public function renderItemsSelected()
{
$surveyIds = json_decode(Yii::app()->request->getPost('$oCheckedItems'), true);
if(!is_array($surveyIds)) {
throw new CHttpException(400, gT('Invalid list of checked items'));
if (!is_array($surveyIds)) {
throw new CHttpException(400, 'Invalid list of checked items');
}
$results = [];

Expand Down

0 comments on commit b450eab

Please sign in to comment.