From 012a98282f847ca7b932ef940158ba8f68e5fd82 Mon Sep 17 00:00:00 2001 From: Andrew McMillan Date: Tue, 19 Jun 2012 10:26:53 +1200 Subject: [PATCH] Fix call to BuildDeadPropertyXML. --- inc/Principal.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/Principal.php b/inc/Principal.php index b40b7699..8528af3e 100644 --- a/inc/Principal.php +++ b/inc/Principal.php @@ -398,7 +398,7 @@ class Principal { $qry = new AwlQuery('SELECT property_name, property_value FROM property WHERE dav_name= :dav_name', array(':dav_name' => $this->dav_name()) ); if ( $qry->Exec('Principal') ) { while ( $property = $qry->Fetch() ) { - $this->dead_properties[$property->property_name] = DAVResource::BuildDeadPropertyXML($property->property_value); + $this->dead_properties[$property->property_name] = DAVResource::BuildDeadPropertyXML($property->property_name,$property->property_value); } } }