From 2824643ca3c094cd0dc87764ce067f65865195f5 Mon Sep 17 00:00:00 2001 From: paul Date: Tue, 21 Nov 2006 15:51:34 +0000 Subject: [PATCH] Fixed function call names for renamed functions. --- campcaster/src/modules/storageServer/var/Playlist.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/campcaster/src/modules/storageServer/var/Playlist.php b/campcaster/src/modules/storageServer/var/Playlist.php index b3055fc03..86c50eb75 100644 --- a/campcaster/src/modules/storageServer/var/Playlist.php +++ b/campcaster/src/modules/storageServer/var/Playlist.php @@ -147,7 +147,7 @@ class Playlist extends StoredFile { */ function lock(&$gb, $subjid=NULL, $val=TRUE) { - if ($val && $gb->_isEdited($this->gunid) !== FALSE) { + if ($val && $gb->isEdited($this->gunid) !== FALSE) { return PEAR::raiseError( 'Playlist::lock: playlist already locked' ); @@ -791,7 +791,7 @@ class Playlist extends StoredFile { ); } } - $acId = $this->gb->_idFromGunid($acGunid); + $acId = $this->gb->idFromGunid($acGunid); if (PEAR::isError($acId)) { return $acId; }