diff options
| author | wjames5 <will@tekimaki.com> | 2010-04-17 15:36:07 +0000 |
|---|---|---|
| committer | wjames5 <will@tekimaki.com> | 2010-04-17 15:36:07 +0000 |
| commit | 74e6d7495046fcdc85b757a6e8f4b63ec0756738 (patch) | |
| tree | afc6241b272116a6a3443e819aedf93017056250 /admin | |
| parent | 90a27eeb2a952708b3948aac544d95e79cf490dd (diff) | |
| download | pigeonholes-74e6d7495046fcdc85b757a6e8f4b63ec0756738.tar.gz pigeonholes-74e6d7495046fcdc85b757a6e8f4b63ec0756738.tar.bz2 pigeonholes-74e6d7495046fcdc85b757a6e8f4b63ec0756738.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
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/admin_pigeonholes_inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/admin_pigeonholes_inc.php b/admin/admin_pigeonholes_inc.php index ac0c9b5..80e8347 100644 --- a/admin/admin_pigeonholes_inc.php +++ b/admin/admin_pigeonholes_inc.php @@ -1,5 +1,5 @@ <?php -// $Header: /cvsroot/bitweaver/_bit_pigeonholes/admin/admin_pigeonholes_inc.php,v 1.22 2008/10/18 23:11:07 nickpalmer Exp $ +// $Header: /cvsroot/bitweaver/_bit_pigeonholes/admin/admin_pigeonholes_inc.php,v 1.23 2010/04/17 15:36:07 wjames5 Exp $ $pigeonholeDisplaySettings = array( 'pigeonholes_display_path' => array( @@ -94,7 +94,7 @@ $gBitSmarty->assign( 'imageSizes', get_image_size_options() ); $exclude = array( 'tikisticky', 'pigeonholes' ); foreach( $gLibertySystem->mContentTypes as $cType ) { if( !in_array( $cType['content_type_guid'], $exclude ) ) { - $formPigeonholeable['guids']['pigeonhole_no_'.$cType['content_type_guid']] = $cType['content_description']; + $formPigeonholeable['guids']['pigeonhole_no_'.$cType['content_type_guid']] = $gLibertySystem->getContentTypeName( $cType['content_type_guid'] ); } } |
