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 /Pigeonholes.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 'Pigeonholes.php')
| -rw-r--r-- | Pigeonholes.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Pigeonholes.php b/Pigeonholes.php index f42ae8a..04deb6d 100644 --- a/Pigeonholes.php +++ b/Pigeonholes.php @@ -1,6 +1,6 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_pigeonholes/Pigeonholes.php,v 1.23 2006/01/20 17:17:26 squareing Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_pigeonholes/Pigeonholes.php,v 1.24 2006/01/24 10:21:23 squareing Exp $ * * +----------------------------------------------------------------------+ * | Copyright ( c ) 2004, bitweaver.org @@ -17,7 +17,7 @@ * Pigeonholes class * * @author xing <xing@synapse.plus.com> - * @version $Revision: 1.23 $ + * @version $Revision: 1.24 $ * @package pigeonholes */ @@ -68,7 +68,7 @@ class Pigeonholes extends LibertyAttachable { global $gBitSystem; $lookupColumn = ( @BitBase::verifyId( $this->mContentId ) ? 'tc.`content_id`' : 'ts.`structure_id`' ); $lookupId = ( @BitBase::verifyId( $this->mContentId ) ? $this->mContentId : $this->mStructureId ); - $query = "SELECT bp.*, ts.`root_structure_id`, ts.`parent_id`, tc.`title`, tc.`data`, tc.`content_type_guid`, + $query = "SELECT bp.*, ts.`root_structure_id`, ts.`parent_id`, tc.`title`, tc.`data`, tc.`user_id`, tc.`content_type_guid`, uue.`login` AS modifier_user, uue.`real_name` AS modifier_real_name, uuc.`login` AS creator_user, uuc.`real_name` AS creator_real_name FROM `".BIT_DB_PREFIX."bit_pigeonholes` bp @@ -357,7 +357,7 @@ class Pigeonholes extends LibertyAttachable { $order .= " ORDER BY ts.`root_structure_id`, ts.`structure_id` ASC"; } - $query = "SELECT bp.*, ts.`root_structure_id`, ts.`parent_id`, tc.`title`, tc.`data`, tc.`content_type_guid`, + $query = "SELECT bp.*, ts.`root_structure_id`, ts.`parent_id`, tc.`title`, tc.`data`, tc.`user_id`, tc.`content_type_guid`, uue.`login` AS modifier_user, uue.`real_name` AS modifier_real_name, uuc.`login` AS creator_user, uuc.`real_name` AS creator_real_name FROM `".BIT_DB_PREFIX."bit_pigeonholes` bp |
