blob: ba9241e80f989e4ff67dedb7dd12225a734d6f66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?php
// @version $Header: /cvsroot/bitweaver/_bit_feed/index.php,v 1.2 2009/09/04 18:17:01 spiderr Exp $
// +----------------------------------------------------------------------+
// | Copyright (c) 2004, bitweaver.org
// +----------------------------------------------------------------------+
// | All Rights Reserved. See copyright.txt for details and a complete list of authors.
// | Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details
// |
// | For comments, please use phpdocu.sourceforge.net documentation standards!!!
// | -> see http://phpdocu.sourceforge.net/
// +----------------------------------------------------------------------+
// | Authors: spider <spider@steelsun.com>
// +----------------------------------------------------------------------+
require_once( '../bit_setup_inc.php' );
require_once( FEED_PKG_PATH.'feed_lib.php' );
$gBitSystem->verifyPermission( 'p_feed_master' );
$listHash['max_records'] = 100;
$actions = feed_get_actions( $listHash );
$gBitSmarty->assign( 'actions', $actions);
$gBitSystem->display( 'bitpackage:feed/master_feed.tpl', FEED_PKG_NAME );
|