diff options
| author | wjames5 <will@tekimaki.com> | 2010-04-17 15:36:08 +0000 |
|---|---|---|
| committer | wjames5 <will@tekimaki.com> | 2010-04-17 15:36:08 +0000 |
| commit | 3b1939c691a49526309775820579c4e6d10bebb9 (patch) | |
| tree | c781e9bd75e462892226e3d0ed18b47d965e9343 | |
| parent | 60aa143be7682880cfa43a2ee6a0440e154aabf2 (diff) | |
| download | tags-3b1939c691a49526309775820579c4e6d10bebb9.tar.gz tags-3b1939c691a49526309775820579c4e6d10bebb9.tar.bz2 tags-3b1939c691a49526309775820579c4e6d10bebb9.zip | |
step three of contenttype name plural - replace all instances where name is accessed though type hash with get name method call, still no schema change requiredpre_ctype_desc_name_schmeachange
| -rw-r--r-- | admin/admin_tags_inc.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/admin/admin_tags_inc.php b/admin/admin_tags_inc.php index d08bf05..f70a9c6 100644 --- a/admin/admin_tags_inc.php +++ b/admin/admin_tags_inc.php @@ -1,5 +1,5 @@ <?php -// $Header: /cvsroot/bitweaver/_bit_tags/admin/admin_tags_inc.php,v 1.7 2009/10/01 14:17:05 wjames5 Exp $ +// $Header: /cvsroot/bitweaver/_bit_tags/admin/admin_tags_inc.php,v 1.8 2010/04/17 15:36:08 wjames5 Exp $ // Copyright (c) 2005 bitweaver Tags // All Rights Reserved. See below for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details. @@ -108,7 +108,7 @@ $gBitSmarty->assign( 'formTagLists',$formTagLists ); $exclude = array( 'bituser', 'tikisticky', 'sample', 'bitcomment'); foreach( $gLibertySystem->mContentTypes as $cType ) { if( !in_array( $cType['content_type_guid'], $exclude ) ) { - $formTaggable['guids']['tags_tag_'.$cType['content_type_guid']] = $cType['content_description']; + $formTaggable['guids']['tags_tag_'.$cType['content_type_guid']] = $gLibertySystem->getContentTypeName( $cType['content_type_guid'] ); } } @@ -139,4 +139,4 @@ foreach( $gLibertySystem->mContentTypes as $cType ) { $gBitSmarty->assign( 'formTaggable', $formTaggable ); -?>
\ No newline at end of file +?> |
