summaryrefslogtreecommitdiffstats
path: root/apps/contacts/import.php
diff options
context:
space:
mode:
authorGeorg Ehrke <dev@georgswebsite.de>2012-01-15 11:47:35 +0100
committerGeorg Ehrke <dev@georgswebsite.de>2012-02-05 12:13:53 +0100
commit89073970d3cb8eeb7283e70babe66af0b0be9a83 (patch)
tree667bad845e0854ebd82ee7fc1383a2d2106c1ecf /apps/contacts/import.php
parent8337eaa1ec3962b185a2fe2e03ccf24fed7020c4 (diff)
downloadnextcloud-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.php6
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');