Skip to content

Commit

Permalink
#251 Solve case where mee_quorum is not available
Browse files Browse the repository at this point in the history
  • Loading branch information
farlistener committed Jul 14, 2020
1 parent fe0651a commit ef90911
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion application/meeting.php
Original file line number Diff line number Diff line change
Expand Up @@ -347,12 +347,14 @@
-
<i class="fa fa-archive"></i> <?php echo lang("meeting_number_of_voters"); ?>
<span class="number-of-voters">0</span>
<?php if (array_key_exists("mee_quorum", $meeting)) { ?>
<span class="quorum-container" title="">
-
<i class="fa fa-bell-o"></i> <span><?php echo lang("meeting_quorum"); ?></span>
<span class="quorum">0</span>
<button style="display: none; margin-top: -6px" type="button" class="btn btn-xs btn-default show-quorum-modal-btn update-btn"><i class="fa fa-pencil" aria-hidden="true"></i></button>
</span>
<?php } ?>
</div>
</div>
</div>
Expand Down Expand Up @@ -1010,7 +1012,10 @@ class="btn btn-default btn-xs set-speaking">
<?php include("meeting/addAgendaFrom_modal.php"); ?>
<?php include("meeting/addTag_modal.php"); ?>
<?php include("meeting/closeMeeting_modal.php"); ?>
<?php include("meeting/setQuorum_modal.php"); ?>
<?php if (array_key_exists("mee_quorum", $meeting)) {
include("meeting/setQuorum_modal.php");
}
?>
<?php include("meeting/setMotionDeadline_modal.php"); ?>

<div class="modal fade" tabindex="-1" role="dialog" id="start-meeting-modal">
Expand Down

0 comments on commit ef90911

Please sign in to comment.