diff options
author | thirdid <thirdid@c5b2fb0a-d05d-0410-98c8-828840a80ff6> | 2010-01-26 22:44:08 -0500 |
---|---|---|
committer | thirdid <thirdid@c5b2fb0a-d05d-0410-98c8-828840a80ff6> | 2010-01-26 22:44:08 -0500 |
commit | bbe78355f6257b64ed9a8009815cebb97b58df21 (patch) | |
tree | d44e97c8aab8ee718c1027e70d0538b7a08c999e /navigation.php | |
parent | 0f4a3b1b086b4bfc9217def70f8049f9eeb75672 (diff) | |
download | bayonetcms-bbe78355f6257b64ed9a8009815cebb97b58df21.tar.gz |
Files relocated into the default theme
git-svn-id: http://svn.3rd-infantry-division.org/testing/branches/Bayonet CMS v2.1@467 c5b2fb0a-d05d-0410-98c8-828840a80ff6
Diffstat (limited to 'navigation.php')
-rw-r--r-- | navigation.php | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/navigation.php b/navigation.php deleted file mode 100644 index 5765712..0000000 --- a/navigation.php +++ /dev/null @@ -1,24 +0,0 @@ -<?php -/** - * Bayonet Conent Management System - * Copyright (C) Joseph Hunkeler & Evan O'Connell - * - * Purpose of this software is to allow users to manage their website - * with ease and without needing to have any coding knowledge in order - * to maintain it. Visit www.eodesign.com/cms for any updates or feedback. - */ - ?> -<table border="0" cellspacing="0" class="navLinks"> - <tr> - <td> <a href="index.php">HOME</a> </td> -<?php - - $result = $db->Query("SELECT * FROM `bayonet_navigation` ORDER BY `weight`"); - $nav = $db->Fetch($result); - - foreach ($nav as $link) { - echo '<td> <a href="' . str_replace('&', '&', $link['link']) . '">' . strtoupper($link['title']) . '</a> </td>'; - } - ?> - </tr> -</table> |