diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2006-01-24 10:21:23 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2006-01-24 10:21:23 +0000 |
| commit | df41f493d0bf27dc491e5567fdbd21cdcc5530fb (patch) | |
| tree | bffc916955c4a18cd0e1e336acc31eef2ee229d0 /lookup_pigeonholes_inc.php | |
| parent | ce679c371160e03bf1928924014f64bbe80b3851 (diff) | |
| download | pigeonholes-df41f493d0bf27dc491e5567fdbd21cdcc5530fb.tar.gz pigeonholes-df41f493d0bf27dc491e5567fdbd21cdcc5530fb.tar.bz2 pigeonholes-df41f493d0bf27dc491e5567fdbd21cdcc5530fb.zip | |
rename $gPigeonholes to $gContent since we're dealing with LibertyContent
fix some minor layout issues and add some basic prefs to schema_inc
add option to not show any category members, but only category name - can act as tagging system that way
Diffstat (limited to 'lookup_pigeonholes_inc.php')
| -rw-r--r-- | lookup_pigeonholes_inc.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lookup_pigeonholes_inc.php b/lookup_pigeonholes_inc.php index e3cc4a8..ce3fe3a 100644 --- a/lookup_pigeonholes_inc.php +++ b/lookup_pigeonholes_inc.php @@ -4,7 +4,7 @@ * * @package pigeonholes * @subpackage functions - * @version $Header: /cvsroot/bitweaver/_bit_pigeonholes/lookup_pigeonholes_inc.php,v 1.2 2006/01/14 19:55:18 squareing Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_pigeonholes/lookup_pigeonholes_inc.php,v 1.3 2006/01/24 10:21:23 squareing Exp $ * * Copyright ( c ) 2005 bitweaver.org * All Rights Reserved. See copyright.txt for details and a complete list of authors. @@ -16,7 +16,7 @@ */ require_once( PIGEONHOLES_PKG_PATH.'/Pigeonholes.php' ); -$gPigeonholes = new Pigeonholes( ( !empty( $_REQUEST['structure_id'] ) ? $_REQUEST['structure_id'] : NULL ), ( !empty( $_REQUEST['content_id'] ) ? $_REQUEST['content_id'] : NULL ) ); -$gPigeonholes->load( TRUE ); -$gBitSmarty->assign( 'gPigeonholes', $gPigeonholes ); +$gContent = new Pigeonholes( ( !empty( $_REQUEST['structure_id'] ) ? $_REQUEST['structure_id'] : NULL ), ( !empty( $_REQUEST['content_id'] ) ? $_REQUEST['content_id'] : NULL ) ); +$gContent->load( TRUE ); +$gBitSmarty->assign( 'gContent', $gContent ); ?> |
