18 lines
491 B
Smarty
18 lines
491 B
Smarty
<div id="menu">
|
|
<ul>
|
|
<li><a target="_top" href="password.php"><?php echo $LANG['UsersMenu_password']; ?></a></li>
|
|
<?php if (VACATION == "YES") { ?>
|
|
<li><a target="_top" href="vacation.php"><?php echo $LANG['UsersMenu_vacation']; ?></a></li>
|
|
<?php } ?>
|
|
<li><a target="_top" href="logout.php"><?php echo $LANG['Menu_logout']; ?></a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<?php
|
|
if (file_exists(realpath("../motd-users.txt"))) {
|
|
echo "<div id=\"motd\">";
|
|
include("../motd-users.txt");
|
|
echo "</div>";
|
|
}
|
|
?>
|