Proper version handling instead of the original form. Variable was
undefined, so every time the index was hit, the error log would get
flooded with the same undefined variable message.
--- a/index.php
+++ b/index.php
@@ -394,10 +394,11 @@
</tr></table></td></tr>
<table>
<tr class="details">
- <td align="left"><a href="http://www.rivetcode.com">RivetTracker</a>
+ <td align="left">
<?php
require("version.php");
- print($version);
+ echo($id);
+ echo($version);
?>
</td>
<td align="right">
--- a/version.php
+++ b/version.php
@@ -1,3 +1,4 @@
<?php
-echo "Version: 1.05.1";
+$id = "<a href=\"http://www.rivetcode.com\">RivetTracker</a>";
+$version = "Version: 1.05.1";
?>