diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-07-08 14:42:33 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-07-08 14:42:33 +0200 |
commit | 47f96e2d5e73cdf95cf563df8586570e027bb710 (patch) | |
tree | bfb5c5a24b3c8ac45183bb04efed69bda3843869 /apps/contacts | |
parent | 746eef0d5ccb2b2b235bf2ad7844b1a71e44ed2f (diff) | |
download | nextcloud-server-47f96e2d5e73cdf95cf563df8586570e027bb710.tar.gz nextcloud-server-47f96e2d5e73cdf95cf563df8586570e027bb710.zip |
Missing semi-colon.
Diffstat (limited to 'apps/contacts')
-rw-r--r-- | apps/contacts/import.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/contacts/import.php b/apps/contacts/import.php index 3891a6d7422..b2c55bd42ac 100644 --- a/apps/contacts/import.php +++ b/apps/contacts/import.php @@ -108,7 +108,7 @@ if(count($parts) == 1){ $imported = 0; $failed = 0; if(!count($importready) > 0) { - OCP\JSON::error(array('data' => (array('message' => 'No contacts to import in .'.$_POST['file'].' Please check if the file is corrupted.'))); + OCP\JSON::error(array('data' => (array('message' => 'No contacts to import in .'.$_POST['file'].' Please check if the file is corrupted.')))); exit(); } foreach($importready as $import){ |