Fixed div error in index.php
authorDylan Lloyd <dylan@psu.edu>
Thu, 24 Mar 2011 23:28:26 +0000 (19:28 -0400)
committerDylan Lloyd <dylan@psu.edu>
Thu, 24 Mar 2011 23:28:26 +0000 (19:28 -0400)
Fixed error stopping the javascript exhibit display on the index page. The error was very strange (as in why the code was there, the fix was simple), I tried to track down its origin with blame, but git lost the history after a rename. This was already fixed in branch dev, but it was not a distinct commit. Still validating (at least the index page).

index.php

index 687fc69..740157b 100644 (file)
--- a/index.php
+++ b/index.php
@@ -190,13 +190,13 @@ OTHER_PROJECTS;
   }
 
   protected function display_exhibits() {
+    echo "<div id='exhibit'>";
     $sql = "SELECT text FROM projects";
     $result = $this->db->query($sql);
     while ($entry = $result->fetch_object()) {
-      echo "<div class='exhibit'>";
       echo $entry->text;
-      echo "</div>";
     }
+    echo "</div>";
   }
 
   private function list_projects() {