]> git.decadent.org.uk Git - maypole.git/blobdiff - lib/Maypole.pm
Reorder the way we look for stringification column.
[maypole.git] / lib / Maypole.pm
index 46fb7d4ac953451059e795351d89fbbc3652431a..70bfd0b277f65bd7c94336240387799f29293003 100644 (file)
@@ -55,10 +55,7 @@ sub handler {
     $r->get_request();
     $r->parse_location();
     my $status = $r->handler_guts();
-    if ($status != OK) {
-        warn "NOT OK!";
-        return $status;
-    }
+    return $status unless $status == OK;
     $r->send_output;
     return $status;
 }