summaryrefslogtreecommitdiff
path: root/modules/mod_feed.php
blob: 647a172ef4dc5ab4dec9660c40b9e4bdffac81e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

global $gQueryUser,$gBitSmarty;

require_once( FEED_PKG_PATH.'feed_lib.php' );

if( !empty($gQueryUser) ){

	$listHash['user_id'] = $gQueryUser->mUserId;
	$actions = feed_get_actions( $listHash );

	$gBitSmarty->assign( 'actions', $actions);


}




?>