Changeset 8223
- Timestamp:
- 08/28/09 01:24:09 (2 years ago)
- Files:
-
- modules/branches/2.6/core/module.xml (modified) (1 diff)
- modules/branches/2.6/core/page.trunks.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.6/core/module.xml
r8221 r8223 10 10 <canuninstall>no</canuninstall> 11 11 <changelog> 12 *2.6.0beta2.0* #3798, #3609 12 *2.6.0beta2.0* #3798, #3609, #3836 13 13 *2.6.0beta1.4* #3075, #3501, #3636, #3581, #3266, #3701, #3545, #3430 14 14 *2.6.0beta1.3* trunk tab improvements modules/branches/2.6/core/page.trunks.php
r8041 r8223 185 185 case 'custom': 186 186 default: 187 $label = substr($tresult['name'],0,15)." (".$tresult['tech'].")"; 187 $label = substr($tresult['name'],0,15); 188 if (trim($label) == '') { 189 $label = substr($tresult['channelid'],0,15); 190 } 191 $label .= " (".$tresult['tech'].")"; 188 192 break; 189 193 }
