diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2012-01-15 11:47:35 +0100 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2012-02-05 12:13:53 +0100 |
commit | 89073970d3cb8eeb7283e70babe66af0b0be9a83 (patch) | |
tree | 667bad845e0854ebd82ee7fc1383a2d2106c1ecf /apps/contacts/import.php | |
parent | 8337eaa1ec3962b185a2fe2e03ccf24fed7020c4 (diff) | |
download | nextcloud-server-89073970d3cb8eeb7283e70babe66af0b0be9a83.tar.gz nextcloud-server-89073970d3cb8eeb7283e70babe66af0b0be9a83.zip |
change comments in import.php
Diffstat (limited to 'apps/contacts/import.php')
-rw-r--r-- | apps/contacts/import.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/contacts/import.php b/apps/contacts/import.php index f145c9a8822..9008208db59 100644 --- a/apps/contacts/import.php +++ b/apps/contacts/import.php @@ -5,7 +5,7 @@ * later. * See the COPYING-README file. */ -//check for calendar rights or create new one +//check for addressbooks rights or create new one ob_start(); require_once ('../../lib/base.php'); OC_JSON::checkLoggedIn(); @@ -29,7 +29,7 @@ if($_POST['method'] == 'new'){ } $id = $_POST['id']; } -//analyse the calendar file +//analyse the contacts file if(is_writable('import_tmp/')){ $progressfopen = fopen($progressfile, 'w'); fwrite($progressfopen, '20'); @@ -57,7 +57,7 @@ foreach($filearr as $line){ } $i++; } -//import the calendar +//import the contacts if(is_writable('import_tmp/')){ $progressfopen = fopen($progressfile, 'w'); fwrite($progressfopen, '40'); |