diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-08-05 03:36:16 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-08-05 03:36:16 +0200 |
commit | 80ca883d4cdf70e74e3a3317d370221193216700 (patch) | |
tree | f7e4e3b5eef11d06bba0063558aff93df3ac7279 /apps/contacts/ajax | |
parent | 07fd517fdacdb250c816f7a75e28df84a40c4a00 (diff) | |
download | nextcloud-server-80ca883d4cdf70e74e3a3317d370221193216700.tar.gz nextcloud-server-80ca883d4cdf70e74e3a3317d370221193216700.zip |
Correct path to ajax file.
Diffstat (limited to 'apps/contacts/ajax')
-rw-r--r-- | apps/contacts/ajax/contact/details.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/contacts/ajax/contact/details.php b/apps/contacts/ajax/contact/details.php index 27d7611ade9..0e07f9ec3d8 100644 --- a/apps/contacts/ajax/contact/details.php +++ b/apps/contacts/ajax/contact/details.php @@ -19,8 +19,8 @@ * License along with this library. If not, see <http://www.gnu.org/licenses/>. * */ - -require_once 'loghandler.php'; + +require_once __DIR__.'/../loghandler.php'; // Check if we are a user OCP\JSON::checkLoggedIn(); @@ -31,7 +31,7 @@ if(is_null($id)) { bailOut(OC_Contacts_App::$l10n->t('Missing ID')); } $card = OC_Contacts_VCard::find($id); -$vcard = OC_Contacts_App::getContactVCard( $id ); +$vcard = OC_VObject::parse($card['carddata']); if(is_null($vcard)) { bailOut(OC_Contacts_App::$l10n->t('Error parsing VCard for ID: "'.$id.'"')); } |