Changeset 6167
- Timestamp:
- 07/24/08 14:40:42 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/trunk/amp_conf/htdocs/admin/common/mainstyle.css
r5980 r6167 688 688 color:#a00; 689 689 } 690 #modulelist .notinstalled { 691 color:#2B77FE; 692 } 690 693 #modulelist div.moduleinfopane .actiontab { 691 694 padding-left:10px; freepbx/trunk/amp_conf/htdocs/admin/page.modules.php
r6166 r6167 659 659 case MODULE_STATUS_NOTINSTALLED: 660 660 if (isset($modules_local[$name])) { 661 echo _('Not Installed (Locally available)');661 echo '<span class="notinstalled">'._('Not Installed (Locally available)').'</span>'; 662 662 } else { 663 echo sprintf(_('Not Installed (Available online: %s)'), $modules_online[$name]['version']);663 echo '<span class="notinstalled">'.sprintf(_('Not Installed (Available online: %s)'), $modules_online[$name]['version']).'</span>'; 664 664 } 665 665 break;
