diff --git a/boot.php b/boot.php index cac272be54..c567533c18 100644 --- a/boot.php +++ b/boot.php @@ -4,7 +4,7 @@ set_time_limit(0); ini_set('pcre.backtrack_limit', 250000); -define ( 'FRIENDIKA_VERSION', '2.2.991' ); +define ( 'FRIENDIKA_VERSION', '2.2.992' ); define ( 'DFRN_PROTOCOL_VERSION', '2.21' ); define ( 'DB_UPDATE_VERSION', 1058 ); diff --git a/mod/webfinger.php b/mod/webfinger.php new file mode 100644 index 0000000000..dd6d72a13c --- /dev/null +++ b/mod/webfinger.php @@ -0,0 +1,24 @@ +Webfinger Diagnostic'; + + $o .= '
'; + $o .= 'Lookup address: '; + $o .= '
'; + + $o .= '

'; + + if(x($_GET,'addr')) { + $addr = $_GET['addr']; + if(strpos($addr,'@' !== false)) + $res = webfinger($addr); + else + $res = lrdd($addr); + $o .= str_replace("\n",'
',print_r($res,true)); + } + return $o; +} \ No newline at end of file