From bec4bd93989cc742cf4c6d938ca1057ef4f1c385 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Fri, 30 Mar 2007 11:14:56 +0000 Subject: [PATCH] Add trailing semi-colons to return statements. These were not needed on the development box but are needed on the deployment box, presumably due to a subtle different version of HTML::Mason --- web/htdocs/details/country-list.mc | 4 ++-- web/htdocs/details/libtype-list.mc | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/web/htdocs/details/country-list.mc b/web/htdocs/details/country-list.mc index 3d99e19..296946e 100644 --- a/web/htdocs/details/country-list.mc +++ b/web/htdocs/details/country-list.mc @@ -1,4 +1,4 @@ -%# $Id: country-list.mc,v 1.1 2007-03-29 16:19:58 mike Exp $ +%# $Id: country-list.mc,v 1.2 2007-03-30 11:14:56 mike Exp $ <%perl> return [ "", @@ -241,5 +241,5 @@ return [ "Zaire", "Zambia", "Zimbabwe", -] +]; diff --git a/web/htdocs/details/libtype-list.mc b/web/htdocs/details/libtype-list.mc index b28664c..8a40f57 100644 --- a/web/htdocs/details/libtype-list.mc +++ b/web/htdocs/details/libtype-list.mc @@ -1,6 +1,6 @@ -%# $Id: libtype-list.mc,v 1.1 2007-03-29 16:19:58 mike Exp $ +%# $Id: libtype-list.mc,v 1.2 2007-03-30 11:14:56 mike Exp $ <%perl> return [ "", qw(Academic Public Corporate Special National Education Other) -] +]; -- 1.7.10.4