Changeset 13938

Show
Ignore:
Timestamp:
03/27/12 14:31:04 (1 year ago)
Author:
p_lindheimer
Message:

fixes #5736 syntax error

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • freepbx/branches/2.10/amp_conf/htdocs/admin/page.modules.php

    r12995 r13938  
    677677      if (isset($modules_online[$name]['attention']) && !empty($modules_online[$name]['attention'])) { 
    678678        echo "\t\t\t\t<div class=\"tabbertab\" title=\""._("Attention")."\">\n"; 
    679         echo nl2br(modgettext::_($modules[$name]['attention']), $loc_domain); 
     679        echo nl2br(modgettext::_($modules[$name]['attention'], $loc_domain)); 
    680680        echo "\t\t\t\t</div>\n"; 
    681681      } 
     
    771771      if (isset($modules[$name]['description']) && !empty($modules[$name]['description'])) { 
    772772        echo "<h5>".sprintf(_("Description for version %s"),$modules[$name]['version'])."</h5>"; 
    773         echo nl2br(modgettext::_($modules[$name]['description']), $loc_domain); 
     773        echo nl2br(modgettext::_($modules[$name]['description'], $loc_domain)); 
    774774      } else { 
    775775        echo _("No description is available.");