mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-17 04:45:16 +02:00
Finish t() for mod
finished mod folder
This commit is contained in:
parent
ead9d86236
commit
407b2397cb
38 changed files with 851 additions and 810 deletions
|
@ -1,14 +1,21 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file mod/webfinger.php
|
||||
*/
|
||||
use Friendica\App;
|
||||
use Friendica\Core\L10n;
|
||||
use Friendica\Network\Probe;
|
||||
|
||||
function webfinger_content(App $a) {
|
||||
|
||||
function webfinger_content(App $a)
|
||||
{
|
||||
if (!local_user()) {
|
||||
http_status_exit(403,
|
||||
["title" => t("Public access denied."),
|
||||
"description" => t("Only logged in users are permitted to perform a probing.")]);
|
||||
http_status_exit(
|
||||
403,
|
||||
[
|
||||
"title" => L10n::t("Public access denied."),
|
||||
"description" => L10n::t("Only logged in users are permitted to perform a probing.")
|
||||
]
|
||||
);
|
||||
killme();
|
||||
}
|
||||
|
||||
|
@ -20,11 +27,11 @@ function webfinger_content(App $a) {
|
|||
|
||||
$o .= '<br /><br />';
|
||||
|
||||
if(x($_GET,'addr')) {
|
||||
if (x($_GET, 'addr')) {
|
||||
$addr = trim($_GET['addr']);
|
||||
$res = Probe::lrdd($addr);
|
||||
$o .= '<pre>';
|
||||
$o .= str_replace("\n",'<br />',print_r($res,true));
|
||||
$o .= str_replace("\n", '<br />', print_r($res, true));
|
||||
$o .= '</pre>';
|
||||
}
|
||||
return $o;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue