Skip to content

Commit

Permalink
Fix error in Event View Template
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeColeGuru committed May 6, 2018
1 parent 48b4376 commit c3c24d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Template/Events/view.ctp
Expand Up @@ -248,7 +248,7 @@

<div>
<ul class="nav nav-tabs" role="tablist">
<li role="presentation" class="active"><a href="#registrations" aria-controls="registrations" role="tab" data-toggle="tab">Registrations <span class="badge"><?= (isset($event->registrations) && !empty($event->registration)) : count($event->registrations) ? "0"; ?></span></a></li>
<li role="presentation" class="active"><a href="#registrations" aria-controls="registrations" role="tab" data-toggle="tab">Registrations <span class="badge"><?= (isset($event->registrations) && !empty($event->registration)) ? count($event->registrations) : "0"; ?></span></a></li>
<li role="presentation"><a href="#attendance" aria-controls="attendance" role="tab" data-toggle="tab">Attendance</a></li>
<?php if ($event->fulfills_prerequisite_id): ?>
<li role="presentation"><a href="#assignments" aria-controls="assignments" role="tab" data-toggle="tab">AD Assignment</a></li>
Expand Down

0 comments on commit c3c24d7

Please sign in to comment.