diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2007-08-23 08:10:21 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2007-08-23 08:10:21 +0000 |
| commit | f4772a203a1dbd132e5aa737bc53332a8cabfde4 (patch) | |
| tree | f867525aa074b7b03d75462b9902e37c84fa5356 /list.php | |
| parent | 77763a357654d782d28040dd53f966f7acc00522 (diff) | |
| download | articles-f4772a203a1dbd132e5aa737bc53332a8cabfde4.tar.gz articles-f4772a203a1dbd132e5aa737bc53332a8cabfde4.tar.bz2 articles-f4772a203a1dbd132e5aa737bc53332a8cabfde4.zip | |
make articles and wiki aware of list services
Diffstat (limited to 'list.php')
| -rw-r--r-- | list.php | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,6 +1,6 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_articles/list.php,v 1.19 2007/07/06 16:37:22 squareing Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_articles/list.php,v 1.20 2007/08/23 08:10:21 squareing Exp $ * @package article * @subpackage functions */ @@ -18,6 +18,10 @@ $gBitSystem->verifyPackage( 'articles' ); // Now check permissions to access this page $gBitSystem->verifyPermission( 'p_articles_read' ); +// get services set up +$gContent = new BitArticle(); +$gContent->invokeServices( 'content_list_function', $_REQUEST ); + // nuke articles if requested if( !empty( $_REQUEST['action'] ) ) { if( $_REQUEST['action'] == 'remove' && !empty( $_REQUEST['remove_article_id'] ) ) { |
