From 6421ecc986bd293b77bf45e3cba201fa9c288049 Mon Sep 17 00:00:00 2001 From: arensb Date: Sat, 5 Oct 2002 17:17:20 +0000 Subject: [PATCH] Added a couple of FIXME comments. --- C4/Output.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/C4/Output.pm b/C4/Output.pm index f75f75e93c..782649a09b 100644 --- a/C4/Output.pm +++ b/C4/Output.pm @@ -133,6 +133,7 @@ sub themelanguage { my @languages = split " ", $lang; # theme preferences.... + # FIXME - There's already a $sth in this scope my $sth=$dbh->prepare("SELECT value FROM systempreferences WHERE variable='opacthemes'"); $sth->execute; my ($theme) = $sth->fetchrow; @@ -140,6 +141,7 @@ sub themelanguage { my @themes = split " ", $theme; my ($theme, $lang); + # FIXME - There are already $theme and $lang in this scope # searches through the themes and languages. First template it find it returns. # Priority is for getting the theme right. THEME: -- 2.20.1