Add trailing semi-colons to return statements. These were not needed
authorMike Taylor <mike@indexdata.com>
Fri, 30 Mar 2007 11:14:56 +0000 (11:14 +0000)
committerMike Taylor <mike@indexdata.com>
Fri, 30 Mar 2007 11:14:56 +0000 (11:14 +0000)
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
web/htdocs/details/libtype-list.mc

index 3d99e19..296946e 100644 (file)
@@ -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 [
        "",
 <%perl>
 return [
        "",
@@ -241,5 +241,5 @@ return [
        "Zaire",
        "Zambia",
        "Zimbabwe",
        "Zaire",
        "Zambia",
        "Zimbabwe",
-]
+];
 </%perl>
 </%perl>
index b28664c..8a40f57 100644 (file)
@@ -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)
 <%perl>
 return [
        "", qw(Academic Public Corporate Special National Education Other)
-]
+];
 </%perl>
 </%perl>