remove pointless warn
Matt S Trout [Thu, 12 Nov 2009 17:14:55 +0000 (17:14 +0000)]
cgi-bin/sdl.cgi

index 5730285..b3c1579 100755 (executable)
@@ -28,7 +28,7 @@ sub page {
 dispatch [
   sub (GET + /) { redispatch_to '/index.html' },
   sub (GET + /**/) {
-    redispatch_to do { my $x = join('/','',$_[1],'index.html'); warn $x; $x };
+    redispatch_to join('/','',$_[1],'index.html');
   },
   sub (.html) {
     filter_response { $self->render_html($_[1]) }