From d0c1749af458e5a882869d0bb3efbbc859c479f7 Mon Sep 17 00:00:00 2001 From: Frank Lichtenheld Date: Wed, 23 Apr 2008 02:59:30 +0200 Subject: [PATCH] html/suite_index.tmpl: Fix error in variable name I really should only use either is_source or source... TT really should have a strict mode, too... --- templates/html/suite_index.tmpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/html/suite_index.tmpl b/templates/html/suite_index.tmpl index d42c528..aaa971c 100644 --- a/templates/html/suite_index.tmpl +++ b/templates/html/suite_index.tmpl @@ -35,9 +35,9 @@ [% '' IF loop.last %] [% END %] -[% link_title = is_source ? g('List of all source packages') +[% link_title = source ? g('List of all source packages') : g('List of all packages'); - link_text = is_source ? g('All source packages') + link_text = source ? g('All source packages') : g('All packages'); -%]

-- 2.39.2