diff options
author | zotlabs <mike@macgirvin.com> | 2018-01-29 16:58:55 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-01-29 16:58:55 -0800 |
commit | 8d479aa1c74169e5b39d6409582c87e59a82d692 (patch) | |
tree | 01f446acd8b60817f2cc00a10c3deeab408b0778 /Zotlabs/Module | |
parent | e4eff6a32bd6b9907c5c1a4454e5861f3712d380 (diff) | |
download | volse-hubzilla-8d479aa1c74169e5b39d6409582c87e59a82d692.tar.gz volse-hubzilla-8d479aa1c74169e5b39d6409582c87e59a82d692.tar.bz2 volse-hubzilla-8d479aa1c74169e5b39d6409582c87e59a82d692.zip |
redirect to the email_validation page if login was attempted after account creation but prior to successful verification. This presents the link to resend the verification email and/or allows you to enter it.
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r-- | Zotlabs/Module/Item.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zotlabs/Module/Item.php b/Zotlabs/Module/Item.php index ad829137a..db2d64d70 100644 --- a/Zotlabs/Module/Item.php +++ b/Zotlabs/Module/Item.php @@ -753,6 +753,7 @@ class Item extends \Zotlabs\Web\Controller { if ((! $plink) && ($item_thread_top)) { $plink = z_root() . '/channel/' . $channel['channel_address'] . '/?f=&mid=' . $mid; + $plink = substr($plink,0,190); } $datarray['aid'] = $channel['channel_account_id']; |