<?
// Includes
include "language/English/en.php";
?>
<title><?php echo ($US['title']) ?> - Version Checker</title>
<div id="main">
<h2><?=$US['update-head']?></h2>
<h3><?=$US['update-check']?></h3>
<p>
<?
$available = file ('../.version');
//$available = file ('includes/.version');
$my = file ('includes/.version');
if (rtrim($my[0]) == rtrim($available[0])) {
?>
<?=$US['update-true']?>
<?
}
else{
?>
<?=$US['update-false']?>
<br />
<br />
<?
echo "". $US['update-yours'] ." : $my[0]";
echo "<br />";
echo "". $US['update-new'] ." : $available[0]";
echo "<br /><br />";
?>
<?=$US['update-get']?>
<br />
<a href="http://mojo-panel.com/download.php" target="_blank"><h2><?=$US['nav-web']?></h2></a>
<?
}
?>
</p>
</div>