Browse Source

Missing logs translation (#3033)

Lukáš Matula 3 years ago
parent
commit
93906b6275
1 changed files with 1 additions and 1 deletions
  1. 1 1
      web/templates/includes/panel.html

+ 1 - 1
web/templates/includes/panel.html

@@ -72,7 +72,7 @@
       <!-- Edit User -->
       <!-- Edit User -->
       <?php if (($_SESSION['userContext'] === 'admin') && (isset($_SESSION['look']) && ($user == 'admin'))) {?>
       <?php if (($_SESSION['userContext'] === 'admin') && (isset($_SESSION['look']) && ($user == 'admin'))) {?>
         <!-- Hide 'edit user' entry point from other administrators for default 'admin' account-->
         <!-- Hide 'edit user' entry point from other administrators for default 'admin' account-->
-        <div class="l-menu__item <?php if($TAB == 'LOG') echo 'l-menu__item--active' ?>"><a href="/list/log/" title="<?_('Logs');?>" class="l-profile__username"><i class="fas fa-history"></i></a></div>
+        <div class="l-menu__item <?php if($TAB == 'LOG') echo 'l-menu__item--active' ?>"><a href="/list/log/" title="<?=_('Logs');?>" class="l-profile__username"><i class="fas fa-history"></i></a></div>
       <?php } else { ?>
       <?php } else { ?>
         <?php if ($panel[$user]['SUSPENDED'] === 'no') {?>
         <?php if ($panel[$user]['SUSPENDED'] === 'no') {?>
           <div class="l-menu__item"><a href="/edit/user/?user=<?=$user; ?>&token=<?=$_SESSION['token']?>" title="<?=htmlspecialchars($user)?> (<?=htmlspecialchars($panel[$user]['NAME'])?>)" class="l-profile__username"><i class="fas fa-user-circle"></i></a></div>
           <div class="l-menu__item"><a href="/edit/user/?user=<?=$user; ?>&token=<?=$_SESSION['token']?>" title="<?=htmlspecialchars($user)?> (<?=htmlspecialchars($panel[$user]['NAME'])?>)" class="l-profile__username"><i class="fas fa-user-circle"></i></a></div>