diff options
Diffstat (limited to 'mod')
-rw-r--r-- | mod/probe.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/probe.php b/mod/probe.php index 5b226cb6a..8e0b60dcc 100644 --- a/mod/probe.php +++ b/mod/probe.php @@ -20,13 +20,13 @@ function probe_content(&$a) { if($res['success']) $j = json_decode($res['body'],true); else { - $o .= sprintf( t('Fetching URL returns error: $1%s'),$res['error'] . "\r\n\r\n"); + $o .= sprintf( t('Fetching URL returns error: %1$s'),$res['error'] . "\r\n\r\n"); $o .= "<strong>https connection failed. Trying again with auto failover to http.</strong>\r\n\r\n"; $res = zot_finger($addr,$channel,true); if($res['success']) $j = json_decode($res['body'],true); else - $o .= sprintf( t('Fetching URL returns error: $1%s'),$res['error'] . "\r\n\r\n"); + $o .= sprintf( t('Fetching URL returns error: %1$s'),$res['error'] . "\r\n\r\n"); } if($j && $j['permissions'] && $j['permissions']['iv']) |