From: Dylan Lloyd Date: Fri, 24 Feb 2012 23:14:12 +0000 (-0500) Subject: Fixed missing break; causing overflow X-Git-Url: https://disinclined.org/git/?a=commitdiff_plain;h=07e403605030f5634f10582cc61ea3d2c02fa270;hp=7486ea5bf3d89cd7662a51bb05c16f5f6d96105c;p=dylansserver.git Fixed missing break; causing overflow --- diff --git a/index.php b/index.php index a0cae2f..bf2249b 100644 --- a/index.php +++ b/index.php @@ -758,6 +758,7 @@ switch (cms::determine_type()) { case "rss": $rss = new rss(); $rss->display(); + break; case 'archive': $archive = new archive; $archive->display();