1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2025-01-30 19:52:17 +01:00

use tabs instead of space for indentation

This commit is contained in:
babelouest 2014-12-06 16:57:00 -05:00 committed by jbtbnl
parent 65bca0269f
commit 4ebbf1ceed

View File

@ -191,9 +191,9 @@ class ImportVCardConnector extends ImportConnector{
// Doesn't look like a vcf file
return 0;
} else {
$element = $this->convertElementToVCard($parts[0]);
$unknownElements = $element->select("X-Unknown-Element");
return (1 - (0.5 * count($unknownElements)/count($parts[0])));
$element = $this->convertElementToVCard($parts[0]);
$unknownElements = $element->select("X-Unknown-Element");
return (1 - (0.5 * count($unknownElements)/count($parts[0])));
}
}