diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2006-01-14 19:55:19 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2006-01-14 19:55:19 +0000 |
| commit | 154080e959440ca9168a56196cf786d1a7405cc5 (patch) | |
| tree | 1db481cca7fd65ed74d277e25583ba52e4402cf5 /modules | |
| parent | 9a238f69969e9c3c33f72dd35335dffc8f52f774 (diff) | |
| download | pigeonholes-154080e959440ca9168a56196cf786d1a7405cc5.tar.gz pigeonholes-154080e959440ca9168a56196cf786d1a7405cc5.tar.bz2 pigeonholes-154080e959440ca9168a56196cf786d1a7405cc5.zip | |
merge recent changes into HEAD
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/mod_last_changes.php | 4 | ||||
| -rw-r--r-- | modules/mod_whats_related.php | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/modules/mod_last_changes.php b/modules/mod_last_changes.php index c58be34..ba2dce5 100644 --- a/modules/mod_last_changes.php +++ b/modules/mod_last_changes.php @@ -1,6 +1,6 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_pigeonholes/modules/Attic/mod_last_changes.php,v 1.3 2005/10/30 21:03:50 lsces Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_pigeonholes/modules/Attic/mod_last_changes.php,v 1.4 2006/01/14 19:55:19 squareing Exp $ * @package liberty * @subpackage modules * Params: @@ -15,7 +15,7 @@ global $gBitUser, $module_rows, $module_params, $gLibertySystem, $module_title; if( $gBitUser->hasPermission( 'bit_p_view_pigeonholes' ) ) { require_once( PIGEONHOLES_PKG_PATH.'Pigeonholes.php' ); - $pigeonholes = new Pigeonholes( NULL, NULL, FALSE ); + $pigeonholes = new Pigeonholes(); $listHash = array( 'title' => !empty( $module_params['category'] ) ? $module_params['category'] : NULL, diff --git a/modules/mod_whats_related.php b/modules/mod_whats_related.php index 515cc63..8fff3bc 100644 --- a/modules/mod_whats_related.php +++ b/modules/mod_whats_related.php @@ -1,6 +1,6 @@ <?php /** - * $Header: /cvsroot/bitweaver/_bit_pigeonholes/modules/mod_whats_related.php,v 1.2 2005/10/26 17:46:45 squareing Exp $ + * $Header: /cvsroot/bitweaver/_bit_pigeonholes/modules/mod_whats_related.php,v 1.3 2006/01/14 19:55:19 squareing Exp $ * * Copyright (c) 2004 bitweaver.org * Copyright (c) 2003 tikwiki.org @@ -8,7 +8,7 @@ * 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 * - * $Id: mod_whats_related.php,v 1.2 2005/10/26 17:46:45 squareing Exp $ + * $Id: mod_whats_related.php,v 1.3 2006/01/14 19:55:19 squareing Exp $ * @package categories * @subpackage modules */ @@ -21,7 +21,7 @@ global $gContent; if( isset( $gContent ) ) { if( $gBitUser->hasPermission( 'bit_p_view_pigeonholes' ) ) { require_once( PIGEONHOLES_PKG_PATH.'Pigeonholes.php' ); - $pigeonholes = new Pigeonholes( NULL, NULL, FALSE ); + $pigeonholes = new Pigeonholes(); if( $pigeons = $pigeonholes->getPigeonholesFromContentId( $gContent->mContentId ) ) { foreach( $pigeons as $pigeon ) { |
