diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2012-05-02 00:55:03 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2012-05-02 00:55:26 +0200 |
commit | 8ed8d9cd91de8b4c977c1b7c0e7facba4754135e (patch) | |
tree | ab54bdac422aa8d9b2c9094c177fc59a72440133 /apps/contacts/lib/vcard.php | |
parent | 2fe646dcec08b36179aa2b6ebca447a20e409b03 (diff) | |
download | nextcloud-server-8ed8d9cd91de8b4c977c1b7c0e7facba4754135e.tar.gz nextcloud-server-8ed8d9cd91de8b4c977c1b7c0e7facba4754135e.zip |
fixing namespace
Diffstat (limited to 'apps/contacts/lib/vcard.php')
-rwxr-xr-x | apps/contacts/lib/vcard.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/contacts/lib/vcard.php b/apps/contacts/lib/vcard.php index 00c008657b7..53600e18b0c 100755 --- a/apps/contacts/lib/vcard.php +++ b/apps/contacts/lib/vcard.php @@ -65,8 +65,8 @@ class OC_Contacts_VCard{ $stmt = OC_DB::prepare( 'SELECT * FROM *PREFIX*contacts_cards WHERE addressbookid = ? ORDER BY fullname' ); $result = $stmt->execute(array($id)); } catch(Exception $e) { - OC\Util::writeLog('contacts','OC_Contacts_VCard:all:, exception: '.$e->getMessage(),OCP\Util::DEBUG); - OC\Util::writeLog('contacts','OC_Contacts_VCard:all, ids: '. $id,OCP\Util::DEBUG); + OCP\Util::writeLog('contacts','OC_Contacts_VCard:all:, exception: '.$e->getMessage(),OCP\Util::DEBUG); + OCP\Util::writeLog('contacts','OC_Contacts_VCard:all, ids: '. $id,OCP\Util::DEBUG); } } $cards = array(); @@ -231,7 +231,7 @@ class OC_Contacts_VCard{ } $n = implode(';', $slice).';;;'; $vcard->setString('N', $n); - OC\Util::writeLog('contacts','OC_Contacts_VCard::updateValuesFromAdd. Added missing \'N\' field: '.$n,OCP\Util::DEBUG); + OCP\Util::writeLog('contacts','OC_Contacts_VCard::updateValuesFromAdd. Added missing \'N\' field: '.$n,OCP\Util::DEBUG); } if(!$uid) { $vcard->setUID(); |