diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-07-15 04:15:57 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-07-15 04:17:30 +0200 |
commit | eba4f080159f0a97f82c79f8b57b6ce45ef127b5 (patch) | |
tree | 0165b3ac9e77d4ddf36fff25521c1657c742bcd3 /apps/contacts/lib | |
parent | 87912a8c6595e90b3248bc84dce6e0693253b81d (diff) | |
download | nextcloud-server-eba4f080159f0a97f82c79f8b57b6ce45ef127b5.tar.gz nextcloud-server-eba4f080159f0a97f82c79f8b57b6ce45ef127b5.zip |
Refactored contacts import.
Diffstat (limited to 'apps/contacts/lib')
-rw-r--r-- | apps/contacts/lib/app.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/contacts/lib/app.php b/apps/contacts/lib/app.php index f125ec0293c..046ceb0bf00 100644 --- a/apps/contacts/lib/app.php +++ b/apps/contacts/lib/app.php @@ -41,7 +41,7 @@ class OC_Contacts_App { $card = OC_Contacts_VCard::find( $id ); if( $card === false ) { OCP\Util::writeLog('contacts', 'Contact could not be found: '.$id, OCP\Util::ERROR); - OCP\JSON::error(array('data' => array( 'message' => self::$l10n->t('Contact could not be found.').' '.$id))); + OCP\JSON::error(array('data' => array( 'message' => self::$l10n->t('Contact could not be found.').' '.print_r($id, true)))); exit(); } |