aboutsummaryrefslogtreecommitdiffstats
path: root/include/auth.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-10-18 15:48:59 -0700
committerfriendica <info@friendica.com>2013-10-18 15:48:59 -0700
commit4ce948731aa2a927758a74d3cdf3d113cbddf4b0 (patch)
treedc15fc452271272a89a658d99a2baf3df32bb4fe /include/auth.php
parent3772682204544e733baf910e6dfe35c0fe99e0e2 (diff)
downloadvolse-hubzilla-4ce948731aa2a927758a74d3cdf3d113cbddf4b0.tar.gz
volse-hubzilla-4ce948731aa2a927758a74d3cdf3d113cbddf4b0.tar.bz2
volse-hubzilla-4ce948731aa2a927758a74d3cdf3d113cbddf4b0.zip
doc - complete hook list, still need detailed functional descriptions with parameters and examples for each
Diffstat (limited to 'include/auth.php')
-rw-r--r--include/auth.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/auth.php b/include/auth.php
index d04ebbe43..8eb8bf333 100644
--- a/include/auth.php
+++ b/include/auth.php
@@ -61,7 +61,8 @@ if((isset($_SESSION)) && (x($_SESSION,'authenticated')) && ((! (x($_POST,'auth-p
if(((x($_POST,'auth-params')) && ($_POST['auth-params'] === 'logout')) || ($a->module === 'logout')) {
// process logout request
- call_hooks("logging_out");
+ $args = array('channel_id' => local_user());
+ call_hooks('logging_out', $args);
nuke_session();
info( t('Logged out.') . EOL);
goaway(z_root());