aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-10-16 23:01:00 -0700
committerzotlabs <mike@macgirvin.com>2017-10-16 23:01:00 -0700
commitb106b53d05b434f5bc717b87d4db56b511e1418b (patch)
treea8fb31ee453edca89ee07a73dd2e5d113037f912 /include
parenta791809a840f168cfe65ea9fd09a30b271f7731e (diff)
downloadvolse-hubzilla-b106b53d05b434f5bc717b87d4db56b511e1418b.tar.gz
volse-hubzilla-b106b53d05b434f5bc717b87d4db56b511e1418b.tar.bz2
volse-hubzilla-b106b53d05b434f5bc717b87d4db56b511e1418b.zip
don't translate 'guest:' since it is part of a url
Diffstat (limited to 'include')
-rw-r--r--include/security.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/security.php b/include/security.php
index d9078eb89..450cc4f69 100644
--- a/include/security.php
+++ b/include/security.php
@@ -114,7 +114,7 @@ function atoken_xchan($atoken) {
'atoken_id' => $atoken['atoken_id'],
'xchan_hash' => substr($c['channel_hash'],0,16) . '.' . $atoken['atoken_name'],
'xchan_name' => $atoken['atoken_name'],
- 'xchan_addr' => t('guest:') . $atoken['atoken_name'] . '@' . \App::get_hostname(),
+ 'xchan_addr' => 'guest:' . $atoken['atoken_name'] . '@' . \App::get_hostname(),
'xchan_network' => 'unknown',
'xchan_url' => z_root() . '/guest/' . substr($c['channel_hash'],0,16) . '.' . $atoken['atoken_name'],
'xchan_hidden' => 1,