Skip to content

Commit

Permalink
Dev: changed php 7 Null coalescing operator to 5.6 syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
ptelu committed May 9, 2019
1 parent 939ef10 commit 0fbda9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/controllers/admin/participantsaction.php
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ public function displayParticipants()
Yii::app()->clientScript->registerPackage('bootstrap-datetimepicker');
Yii::app()->clientScript->registerPackage('bootstrap-switch');

$aData['massiveAction'] = App()->getController()->renderPartial('/admin/participants/massive_actions/_selector', array('participantOwnerUid' => $participantParam['owner_uid'] ?? ''), true, false);
$aData['massiveAction'] = App()->getController()->renderPartial('/admin/participants/massive_actions/_selector', array('participantOwnerUid' => $participantParam['owner_uid'] ? $participantParam['owner_uid'] : ''), true, false);

// Set page size
if ($request->getPost('pageSizeParticipantView')) {
Expand Down

0 comments on commit 0fbda9f

Please sign in to comment.