diff options
author | friendica <info@friendica.com> | 2013-01-21 19:56:39 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-01-21 19:56:39 -0800 |
commit | fb76675a28b37b7281546373671d0dabbd69ef46 (patch) | |
tree | 974b2d68c4aed5a64d383654808cbf3163768771 /mod | |
parent | 4119e1f9cc9ebb6a45ec69fd23c1262b3f823c3a (diff) | |
download | volse-hubzilla-fb76675a28b37b7281546373671d0dabbd69ef46.tar.gz volse-hubzilla-fb76675a28b37b7281546373671d0dabbd69ef46.tar.bz2 volse-hubzilla-fb76675a28b37b7281546373671d0dabbd69ef46.zip |
now we're into the minor nitty fixes
Diffstat (limited to 'mod')
-rw-r--r-- | mod/post.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/post.php b/mod/post.php index 7a96bcf7a..36b2e1482 100644 --- a/mod/post.php +++ b/mod/post.php @@ -87,8 +87,9 @@ function post_init(&$a) { $_SESSION['authenticated'] = 1; $_SESSION['visitor_id'] = $x[0]['xchan_hash']; $a->set_observer($x[0]); + require_once('include/security.php'); $a->set_groups(init_groups_visitor($_SESSION['visitor_id'])); - notice(sprintf( t('Welcome %s. Remote authentication successful.'),$x[0]['xchan_name'])); + info(sprintf( t('Welcome %s. Remote authentication successful.'),$x[0]['xchan_name'])); } } |