Small UI change, change 'Home' to 'Tickets'

master
Mike Koch 6 years ago
parent f2001ec446
commit 400c216869
No known key found for this signature in database
GPG Key ID: 9BA5D7F8391455ED

@ -646,16 +646,20 @@ require_once(HESK_PATH . 'inc/show_admin_nav.inc.php');
} }
?> ?>
</div> </div>
<div class="form-group" style="text-align: center"> <div class="form-group">
<?php <div class="col-md-9 col-md-offset-3">
$html = $ticket['html'] ? 1 : 0; <?php
?> $html = $ticket['html'] ? 1 : 0;
<input type="hidden" name="html" value="<?php echo $html; ?>"> ?>
<input type="submit" value="<?php echo $hesklang['save_changes']; ?>" class="btn btn-default"> <input type="hidden" name="html" value="<?php echo $html; ?>">
<?php if (isset($_REQUEST['isManager']) && $_REQUEST['isManager']): ?> <div class="btn-group">
<input type="hidden" name="isManager" value="1"> <input type="submit" value="<?php echo $hesklang['save_changes']; ?>" class="btn btn-primary">
<?php endif; ?> <a class="btn btn-default" href="javascript:history.go(-1)"><?php echo $hesklang['back']; ?></a>
<a class="btn btn-default" href="javascript:history.go(-1)"><?php echo $hesklang['back']; ?></a> </div>
<?php if (isset($_REQUEST['isManager']) && $_REQUEST['isManager']): ?>
<input type="hidden" name="isManager" value="1">
<?php endif; ?>
</div>
</div> </div>
</form> </form>
</div> </div>

@ -53,7 +53,7 @@ $mails = mfh_get_mail_headers_for_dropdown($_SESSION['id'], $hesk_settings, $hes
?> ?>
<li <?php echo $active; ?>> <li <?php echo $active; ?>>
<a href="admin_main.php"> <a href="admin_main.php">
<i class="fa fa-home" <?php echo $iconDisplay; ?>></i> <span><?php echo $hesklang['main_page']; ?></span> <i class="fa fa-ticket" <?php echo $iconDisplay; ?>></i> <span><?php echo $hesklang['tickets']; ?></span>
</a> </a>
</li> </li>
<?php <?php

Loading…
Cancel
Save