mirror of https://github.com/itflow-org/itflow
Merge pull request #953 from wrongecho/hide-open-tickets-timer
Hide the running open ticket tracker as this feature is being removed
This commit is contained in:
commit
de7d68b659
20
top_nav.php
20
top_nav.php
|
|
@ -29,18 +29,6 @@
|
||||||
<!-- Right navbar links -->
|
<!-- Right navbar links -->
|
||||||
<ul class="navbar-nav ml-auto">
|
<ul class="navbar-nav ml-auto">
|
||||||
|
|
||||||
<?php if ($config_module_enable_ticketing == 1) { ?>
|
|
||||||
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link" href="#" data-toggle="modal" data-target="#openTicketsModal">
|
|
||||||
<i class="fas fa-hourglass-half"></i>
|
|
||||||
<span class="badge" id="runningTicketsCount">0</span>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<?php } ?>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- New Notifications Dropdown -->
|
<!-- New Notifications Dropdown -->
|
||||||
<?php
|
<?php
|
||||||
$sql_notifications = mysqli_query($mysqli, "SELECT * FROM notifications
|
$sql_notifications = mysqli_query($mysqli, "SELECT * FROM notifications
|
||||||
|
|
@ -84,7 +72,7 @@
|
||||||
<small class="text-secondary"><?php echo $notification; ?></small>
|
<small class="text-secondary"><?php echo $notification; ?></small>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
||||||
<div class="dropdown-divider"></div>
|
<div class="dropdown-divider"></div>
|
||||||
|
|
@ -114,7 +102,7 @@
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<!-- End New Notifications Dropdown -->
|
<!-- End New Notifications Dropdown -->
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item dropdown user-menu">
|
<li class="nav-item dropdown user-menu">
|
||||||
<a href="#" class="nav-link" data-toggle="dropdown">
|
<a href="#" class="nav-link" data-toggle="dropdown">
|
||||||
<?php if (empty($session_avatar)) { ?>
|
<?php if (empty($session_avatar)) { ?>
|
||||||
|
|
@ -151,7 +139,7 @@
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
<?php if ($config_module_enable_ticketing == 1) {
|
<?php if ($config_module_enable_ticketing == 1) {
|
||||||
include_once "top_nav_tickets_modal.php";
|
include_once "top_nav_tickets_modal.php";
|
||||||
} ?>
|
} ?>
|
||||||
<!-- /.navbar -->
|
<!-- /.navbar -->
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue