]> ruin.nu Git - ndwebbie.git/commitdiff
Don't require status 200 for some user data
authorMichael Andreen <harv@ruin.nu>
Thu, 16 Oct 2008 19:31:43 +0000 (21:31 +0200)
committerMichael Andreen <harv@ruin.nu>
Thu, 16 Oct 2008 19:31:43 +0000 (21:31 +0200)
lib/NDWeb/Controller/Root.pm

index a1eac62c9f76b8cf7bd932a97dd14a4ba56d4c83..8a6ab6abce00df8223909fbd281a55399fcad48f 100644 (file)
@@ -173,7 +173,7 @@ sub end : ActionClass('RenderView') {
                }
        }
 
-       if ($c->user_exists && $c->res->status == 200){
+       if ($c->user_exists){
                my $fleetupdate = 0;
                if ($c->check_user_roles(qw/member_menu/)){
                        $fleetupdate = $dbh->selectrow_array(q{SELECT tick FROM fleets WHERE sender = ?
@@ -198,15 +198,13 @@ sub end : ActionClass('RenderView') {
                                        || $c->check_user_roles(qw/no_fleet_update/)))),
                $c->forward('listTargets');
        }
-       if ($c->res->status == 200){
-               my $birthdays = $dbh->prepare(q{SELECT username
+       my $birthdays = $dbh->prepare(q{SELECT username
                        ,date_part('year',age(birthday)) AS age
                        FROM users WHERE birthday IS NOT NULL
                                AND mmdd(birthday) = mmdd(CURRENT_DATE)
                });
-               $birthdays->execute;
-               $c->stash(birthdays => $birthdays->fetchall_arrayref({}));
-       }
+       $birthdays->execute;
+       $c->stash(birthdays => $birthdays->fetchall_arrayref({}));
 }
 
 =head1 AUTHOR