So, I decided to try out SR Castle's CMS. It appears a lot of things are missing, so I added some more stuff to it, and fixed some bugs.
Fix GM Controls:
Add this to Config.php
Change index.php line 147:
Code:
if ($userID == "IDHERE" || $userID == "ANOTHERIDHERE") {
With
Code:
if (in_array($userID,$gm_accounts)) {
Fixed Nav:
Change line 83 in index.php
Code:
<li><a href="?register" alt="Account">Account</a></li>
with
Code:
<?php if(!isset($_SESSION['loggedin'])) { ?>
<li><a href="?register" alt="Register">Register</a></li>
<?php } else { ?><li><a href="?account" alt="Account">Account</a></li><?php } ?>
Replace pager.php with:
Add account.php in modules/