From 8af47417d48c4c054ddedce3e083f7f89e468cdf Mon Sep 17 00:00:00 2001 From: Dylan Lloyd Date: Tue, 7 Jun 2011 21:41:09 -0400 Subject: [PATCH] Fixed overzealous commit d215663 which broke script-disabled fallback --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index d2715af..cd13a87 100644 --- a/index.php +++ b/index.php @@ -219,7 +219,7 @@ class project extends index { WHERE title = ?"; $result = $this->query($sql, "s", $_GET['project']); if ($result = $result[0]['text']) { - $text = str_replace("class='exhibit'", "class='exhibit'", $result); + $text = str_replace("class='exhibit'", "class='exhibit' style='display:block;'", $result); echo $text; echo ""; } else { -- 2.30.2