From 2e8e09343f7c603879ee4252e8915bcd80bdb7ab Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sven=20Sch=C3=B6ling?= Date: Fri, 16 Sep 2016 14:52:32 +0200 Subject: [PATCH] Auth: table_present caching gefixt return aus dem do { } Block verhindert das memoizing. --- SL/Auth.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SL/Auth.pm b/SL/Auth.pm index 3f8589df2..f4f096a6c 100644 --- a/SL/Auth.pm +++ b/SL/Auth.pm @@ -918,7 +918,7 @@ sub _tables_present { my ($count) = selectrow_query($main::form, $dbh, $query, @tables); - return scalar @tables == $count; + scalar @tables == $count; } } -- 2.20.1