aboutsummaryrefslogtreecommitdiffstats
path: root/mod/probe.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-03-24 17:16:01 -0700
committerfriendica <info@friendica.com>2014-03-24 17:16:01 -0700
commite6ea4a757452f93d49a80bf1f4fa76c88c3659ff (patch)
treeb23092f34f45940d9777ab37823a8a46fe2f3661 /mod/probe.php
parent592f5591d9751b3ed6194ba018ff56897bc4e7e5 (diff)
downloadvolse-hubzilla-e6ea4a757452f93d49a80bf1f4fa76c88c3659ff.tar.gz
volse-hubzilla-e6ea4a757452f93d49a80bf1f4fa76c88c3659ff.tar.bz2
volse-hubzilla-e6ea4a757452f93d49a80bf1f4fa76c88c3659ff.zip
ssl ciphers - be liberal in what we accept, conservative in what we generate
Diffstat (limited to 'mod/probe.php')
-rw-r--r--mod/probe.php4
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'])