Show
Ignore:
Timestamp:
07/01/10 15:20:05 (3 years ago)
Author:
mickecarlsson
Message:

fax module: Change from html tag 'strong' to the more commonly use 'b' as we use that in every other module

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/branches/2.8/fax/functions.inc.php

    r10023 r10024  
    8080    $fax=fax_detect(); 
    8181    if(!$fax['module']){//missing modules 
    82       $currentcomponent->addguielem($section, new gui_label('error','<font color="red">'._('ERROR: No FAX modules detected! Fax-related dialplan will <strong>NOT</strong> be generated. This module requires Fax for Asterisk or spandsp based app_fax or app_rxfax to function.').'</font>')); 
     82      $currentcomponent->addguielem($section, new gui_label('error','<font color="red">'._('ERROR: No FAX modules detected! Fax-related dialplan will <b>NOT</b> be generated. This module requires Fax for Asterisk or spandsp based app_fax or app_rxfax to function.').'</font>')); 
    8383    }elseif($fax['module'] == 'res_fax' && $fax['license'] < 1){//missing licese 
    84       $currentcomponent->addguielem($section, new gui_label('error','<font color="red">'._('ERROR: No Fax license detected. Fax-related dialplan will <strong>NOT</strong> be generated! This module has detected that Fax for Asterisk is installed without a license. At least one license is required (it is available for free) and must be installed.').'</font>')); 
     84      $currentcomponent->addguielem($section, new gui_label('error','<font color="red">'._('ERROR: No Fax license detected. Fax-related dialplan will <b>NOT</b> be generated! This module has detected that Fax for Asterisk is installed without a license. At least one license is required (it is available for free) and must be installed.').'</font>')); 
    8585    } 
    8686    $usage_list = framework_display_destination_usage(fax_getdest($extdisplay));