Changeset 2797

Show
Ignore:
Timestamp:
10/19/06 10:59:47 (7 years ago)
Author:
gregmac
Message:

Fix bug with displaying attention tag

Files:

Legend:

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

    r2794 r2797  
    286286     
    287287    if ($online) { 
     288      //echo "<a href='config.php?display=modules&amp;type=tool&amp;extdisplay=local'>"._("Terminate Connection to Online Module Repository")."</a><br />\n"; 
     289      //echo "<a href='config.php?display=modules&amp;type=tool&amp;extdisplay=online&amp;refresh=true'>"._("Force Refresh of Local Module Cache")."</a>\n"; 
     290       
    288291      if (isset($amp_conf['AMPMODULEMSG'])) { 
    289292        $announcements = @ file_get_contents($amp_conf['AMPMODULEMSG']."/version-$version.html"); 
     
    402405      if (isset($modules_online[$name]['attention']) && !empty($modules_online[$name]['attention'])) { 
    403406        echo "\t\t\t\t<div class=\"tabbertab\" title=\"Attention\">\n"; 
    404         echo nl2br($modules[$name]['attention']); 
     407        echo nl2br($modules_online[$name]['attention']); 
    405408        echo "\t\t\t\t</div>\n"; 
    406409      }