aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2022-01-04 19:48:15 +0000
committerMario <mario@mariovavti.com>2022-01-04 19:48:15 +0000
commit9d59cb01350b7b9b535b959fd4329dc53e557614 (patch)
tree52cfc2bec8b3f2b5b8e503b95abfb16c5944b7c2 /Zotlabs
parent7d348fe69f71d907a353eb8c57d30127cd5f74cd (diff)
downloadvolse-hubzilla-9d59cb01350b7b9b535b959fd4329dc53e557614.tar.gz
volse-hubzilla-9d59cb01350b7b9b535b959fd4329dc53e557614.tar.bz2
volse-hubzilla-9d59cb01350b7b9b535b959fd4329dc53e557614.zip
minor wording change and fix connections link
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Lib/Activity.php2
-rw-r--r--Zotlabs/Module/Tokens.php6
2 files changed, 4 insertions, 4 deletions
diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php
index ef18040c0..3cb2f7c22 100644
--- a/Zotlabs/Lib/Activity.php
+++ b/Zotlabs/Lib/Activity.php
@@ -1519,7 +1519,7 @@ class Activity {
'type' => NOTIFY_INTRO,
'from_xchan' => $ret['xchan_hash'],
'to_xchan' => $channel['channel_hash'],
- 'link' => z_root() . '/connedit/' . $new_connection[0]['abook_id'],
+ 'link' => z_root() . '/connections#' . $new_connection[0]['abook_id'],
]
);
diff --git a/Zotlabs/Module/Tokens.php b/Zotlabs/Module/Tokens.php
index 1b074171e..672bd619e 100644
--- a/Zotlabs/Module/Tokens.php
+++ b/Zotlabs/Module/Tokens.php
@@ -275,9 +275,9 @@ class Tokens extends Controller {
$tpl = get_markup_template("tokens.tpl");
$o .= replace_macros($tpl, array(
- '$form_security_token' => get_form_security_token("tokens"),
- '$permcat' => ['permcat', t('Select a role for this token'), $current_permcat, '', $permcats],
- '$title' => t('Guest Access Tokens'),
+ '$form_security_token' => get_form_security_token('tokens'),
+ '$permcat' => ['permcat', t('Select a role for this guest'), $current_permcat, '', $permcats],
+ '$title' => t('Guest Access'),
'$desc' => $desc,
'$tokens' => $t,
'$atoken' => $atoken,