From 8cdda73ad50299d641a978e24d3c4d9be4319579 Mon Sep 17 00:00:00 2001
From: Olav Morken <olav.morken@uninett.no>
Date: Thu, 28 Feb 2008 13:07:59 +0000
Subject: [PATCH] parseMetadata: fix generated output - add missing ';'.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@336 44740490-163a-0410-bde0-09ae8108e29a
---
 bin/parseMetadata.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/parseMetadata.php b/bin/parseMetadata.php
index 87be37165..8c7254c35 100755
--- a/bin/parseMetadata.php
+++ b/bin/parseMetadata.php
@@ -172,7 +172,7 @@ function writeMetadataFiles() {
 
 			fwrite($fh, "\n");
 			fwrite($fh, '/* The following metadata was generated from ' . $filename . ' on ' . $GLOBALS['when'] . '. */' . "\n");
-			fwrite($fh, '$metadata[\'' . addslashes($entityID) . '\'] = ' . var_export($m['metadata'], TRUE)) . ';' . "\n";
+			fwrite($fh, '$metadata[\'' . addslashes($entityID) . '\'] = ' . var_export($m['metadata'], TRUE) . ';' . "\n");
 		}
 
 
-- 
GitLab