You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
640 B
Smarty
20 lines
640 B
Smarty
18 years ago
|
<div id="menu">
|
||
|
<ul>
|
||
|
<?php if ($CONF['vacation'] == "YES") { ?>
|
||
|
<li><a target="_top" href="vacation.php"><?php print $PALANG['pUsersMenu_vacation']; ?></a></li>
|
||
|
<?php } ?>
|
||
|
<li><a target="_top" href="edit-alias.php"><?php print $PALANG['pUsersMenu_edit_alias']; ?></a></li>
|
||
|
<li><a target="_top" href="password.php"><?php print $PALANG['pUsersMenu_password']; ?></a></li>
|
||
|
<li><a target="_top" href="logout.php"><?php print $PALANG['pMenu_logout']; ?></a></li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
|
||
|
<?php
|
||
|
if (file_exists (realpath ("../motd-users.txt")))
|
||
|
{
|
||
|
print "<div id=\"motd\">\n";
|
||
|
include ("../motd-users.txt");
|
||
|
print "</div>";
|
||
|
}
|
||
|
?>
|