From: Dylan Lloyd Date: Wed, 8 Jun 2011 01:41:09 +0000 (-0400) Subject: Fixed overzealous commit d215663 which broke script-disabled fallback X-Git-Url: https://disinclined.org/git/?a=commitdiff_plain;h=8af47417d48c4c054ddedce3e083f7f89e468cdf;p=dylansserver.git Fixed overzealous commit d215663 which broke script-disabled fallback --- 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 {