From 46ef0aef4fa250eccebb653c737ac6ea970a2eba Mon Sep 17 00:00:00 2001 From: fentie <brian.fenton@wheniwork.com> Date: Wed, 18 Oct 2017 23:26:46 -0500 Subject: [PATCH] adding missing method scopes --- modules/metarefresh/lib/MetaLoader.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/metarefresh/lib/MetaLoader.php b/modules/metarefresh/lib/MetaLoader.php index 76942cb94..4e3244be8 100644 --- a/modules/metarefresh/lib/MetaLoader.php +++ b/modules/metarefresh/lib/MetaLoader.php @@ -357,7 +357,7 @@ class sspmod_metarefresh_MetaLoader { /** * This function writes the metadata to an ARP file */ - function writeARPfile($config) { + public function writeARPfile($config) { assert($config instanceof SimpleSAML_Configuration); @@ -389,7 +389,7 @@ class sspmod_metarefresh_MetaLoader { /** * This function writes the metadata to to separate files in the output directory. */ - function writeMetadataFiles($outputDir) { + public function writeMetadataFiles($outputDir) { while(strlen($outputDir) > 0 && $outputDir[strlen($outputDir) - 1] === '/') { $outputDir = substr($outputDir, 0, strlen($outputDir) - 1); -- GitLab