]> git.mxchange.org Git - friendica.git/blobdiff - mod/webfinger.php
Events: Now with guid.
[friendica.git] / mod / webfinger.php
index 4024671b02f271c5a31956b58d54bb98afaf2259..74bd2c9543c6ceda125719b075f1fe08f7845c08 100644 (file)
@@ -1,13 +1,14 @@
 <?php
 
-if(! function_exists('webfinger_content')) {
+
+
 function webfinger_content(&$a) {
 
        $o .= '<h3>Webfinger Diagnostic</h3>';
 
        $o .= '<form action="webfinger" method="get">';
        $o .= 'Lookup address: <input type="text" style="width: 250px;" name="addr" value="' . $_GET['addr'] .'" />';
-       $o .= '<input type="submit" name="submit" value="Submit" /></form>';
+       $o .= '<input type="submit" name="submit" value="Submit" /></form>'; 
 
        $o .= '<br /><br />';
 
@@ -23,4 +24,3 @@ function webfinger_content(&$a) {
        }
        return $o;
 }
-}