diff --git a/apps/user_webfinger/webfinger.php b/apps/user_webfinger/webfinger.php
index 7c59c53afece943f55f7cf58a57a2e19efeb4f5f..bb7bb68f7764bf864a949e304124712820b0ec04 100755
--- a/apps/user_webfinger/webfinger.php
+++ b/apps/user_webfinger/webfinger.php
@@ -33,9 +33,9 @@ $request = strip_tags(urldecode($_GET['q']));
 if($_GET['q']) {
 	$reqParts = explode('@', $request);
 	if(count($reqParts)==2) {
-    $userName = $reqParts[0];
-	  $hostName = $reqParts[1];
-  }
+		$userName = $reqParts[0];
+		$hostName = $reqParts[1];
+	}
 }
 if(substr($userName, 0, 5) == 'acct:') {
 	$userName = substr($userName, 5);