mirror of
https://github.com/slawkens/myaac.git
synced 2025-10-13 17:24:54 +02:00
Fixes
* fixed support for TFS 0.2 series * added FAQ link
This commit is contained in:
@@ -93,8 +93,10 @@
|
||||
<a href="<?php echo $template['link_highscores']; ?>">Highscores</a>
|
||||
<span class="separator"></span>
|
||||
<a href="<?php echo $template['link_lastkills']; ?>">Last Deaths</a>
|
||||
<?php if(fieldExist('name', 'houses')): ?>
|
||||
<span class="separator"></span>
|
||||
<a href="<?php echo $template['link_houses']; ?>">Houses</a>
|
||||
<?php endif; ?>
|
||||
<span class="separator"></span>
|
||||
<?php if($config['otserv_version'] == TFS_03): ?>
|
||||
<a href="<?php echo $template['link_bans']; ?>">Bans</a>
|
||||
@@ -127,6 +129,8 @@
|
||||
<a href="<?php echo $template['link_screenshots']; ?>">Screenshots</a>
|
||||
<span class="separator"></span>
|
||||
<a href="<?php echo $template['link_experienceTable']; ?>">Experience Table</a>
|
||||
<span class="separator"></span>
|
||||
<a href="<?php echo $template['link_faq']; ?>">FAQ</a>
|
||||
</div>
|
||||
<?php
|
||||
if($config['gifts_system'])
|
||||
@@ -156,7 +160,7 @@
|
||||
echo '
|
||||
<font color="green"><b>Server Online</b></font> »
|
||||
Players Online: ' . $status['players'] . ' / ' . $status['playersMax'] . ' »
|
||||
Monsters: ' . $status['monsters'] . ' » Uptime: ' . $status['uptimeReadable'] . '';
|
||||
Monsters: ' . $status['monsters'] . ' » Uptime: ' . (isset($status['uptimeReadable']) ? $status['uptimeReadable'] : 'Unknown') . '';
|
||||
else
|
||||
echo '<font color="red"><b>Server Offline</b></font>';
|
||||
?>
|
||||
|
@@ -420,6 +420,7 @@ echo "<a href='" . $template['link_downloads'] . "'>
|
||||
<div class='RightChain' style='background-image:url(<?php echo $template_path; ?>/images/general/chain.gif);'></div>
|
||||
</div>
|
||||
</a>
|
||||
<?php if(fieldExist('name', 'houses')): ?>
|
||||
<a href='<?php echo $template['link_houses']; ?>'>
|
||||
<div id='submenu_houses' class='Submenuitem' onMouseOver='MouseOverSubmenuItem(this)' onMouseOut='MouseOutSubmenuItem(this)'>
|
||||
<div class='LeftChain' style='background-image:url(<?php echo $template_path; ?>/images/general/chain.gif);'></div>
|
||||
@@ -428,6 +429,7 @@ echo "<a href='" . $template['link_downloads'] . "'>
|
||||
<div class='RightChain' style='background-image:url(<?php echo $template_path; ?>/images/general/chain.gif);'></div>
|
||||
</div>
|
||||
</a>
|
||||
<?php endif; ?>
|
||||
<a href='<?php echo $template['link_guilds']; ?>'>
|
||||
<div id='submenu_guilds' class='Submenuitem' onMouseOver='MouseOverSubmenuItem(this)' onMouseOut='MouseOutSubmenuItem(this)'>
|
||||
<div class='LeftChain' style='background-image:url(<?php echo $template_path; ?>/images/general/chain.gif);'></div>
|
||||
|
Reference in New Issue
Block a user