Fixed missing break; causing overflow
[dylansserver.git] / index.php
index b95b16d..bf2249b 100644 (file)
--- a/index.php
+++ b/index.php
@@ -194,7 +194,7 @@ OTHER_PROJECTS;
 
   protected function display_exhibits() {
     echo "<div id='exhibit'>";
-    $sql = "SELECT text FROM projects";
+    $sql = "SELECT text FROM projects ORDER BY rank";
     $result = $this->db->query($sql);
     while ($entry = $result->fetch_object()) {
       echo $entry->text;
@@ -208,7 +208,7 @@ OTHER_PROJECTS;
           <h3>my projects:</h3>
         </li>
 HEREDOC;
-    $sql = "SELECT title FROM projects";
+    $sql = "SELECT title FROM projects ORDER BY rank";
     $result = $this->db->query($sql);
     while ($entry = $result->fetch_object()) {
       echo "<li><a class='tab' href='$entry->title'>$entry->title</a></li>";
@@ -673,15 +673,15 @@ class rss extends cms {
          echo <<<END_OF_ENTRY
          <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
       <channel>
-           <title>dylanstestserver.com/notes/rss</title>
-               <link>http://dylanstestserver.com/notes</link>
-               <description>dylanstestserver.com/notes/rss</description>
-               <atom:link href="http://dylanstestserver.com/notes/rss" rel="self" type="application/rss+xml" />
+           <title>dylansserver.com/notes/rss</title>
+               <link>http://dylansserver.com/notes</link>
+               <description>dylansserver.com/notes/rss</description>
+               <atom:link href="http://dylansserver.com/notes/rss" rel="self" type="application/rss+xml" />
 END_OF_ENTRY;
        while ($entry = $result->fetch_object()) {
          $title = $entry->title;
          $date_posted = $entry->date_posted;
-         $url = "http://dylanstestserver.com/note/" . $entry->url;
+         $url = "http://dylansserver.com/note/" . $entry->url;
          $text = $entry->text;
          $text = strip_tags($text);
          $end_of_first_sentence = strpos($text, '.');
@@ -758,6 +758,7 @@ switch (cms::determine_type()) {
   case "rss":
     $rss = new rss();
        $rss->display();
+    break;
   case 'archive':
     $archive = new archive;
        $archive->display();