Module: nagvis Branch: master Commit: 0d154175c96c987cef63e13cfeff30331c915ce8 URL: http://nagvis.git.sourceforge.net/git/gitweb.cgi?p=nagvis/nagvis;a=commit;h=0d154175c96c987cef63e13cfeff30331c915ce8
Author: Lars Michelsen <[email protected]> Date: Sat Dec 18 14:00:55 2010 +0100 Fixed function visibility --- share/server/core/classes/GlobalMapCfg.php | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/share/server/core/classes/GlobalMapCfg.php b/share/server/core/classes/GlobalMapCfg.php index d26e5a3..2845274 100644 --- a/share/server/core/classes/GlobalMapCfg.php +++ b/share/server/core/classes/GlobalMapCfg.php @@ -2380,7 +2380,7 @@ class GlobalMapCfg { * @return Boolean Is Successful? * @author Lars Michelsen <[email protected]> */ - private function writeMapLock() { + public function writeMapLock() { // Can an existing lock be updated? if($this->checkMapLockExists(0) && !$this->checkMapLockWriteable(0)) return false; @@ -2402,7 +2402,7 @@ class GlobalMapCfg { * @return Boolean Is Successful? * @author Lars Michelsen <[email protected]> */ - private function deleteMapLock() { + public function deleteMapLock() { if($this->checkMapLockWriteable(0)) { return unlink($this->mapLockPath); } else { ------------------------------------------------------------------------------ Lotusphere 2011 Register now for Lotusphere 2011 and learn how to connect the dots, take your collaborative environment to the next level, and enter the era of Social Business. http://p.sf.net/sfu/lotusphere-d2d _______________________________________________ Nagvis-checkins mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/nagvis-checkins
