Changeset 7645

Show
Ignore:
Timestamp:
05/06/09 11:36:46 (3 years ago)
Author:
p_lindheimer
Message:

fixes #3658 module_admin PHP error when online repository not available

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • freepbx/branches/2.5/amp_conf/bin/module_admin

    r7625 r7645  
    140140  if ($online) { 
    141141    $modules_online = module_getonlinexml(); 
    142     $modules += $modules_online; 
     142    if (isset($modules_online)) { 
     143      $modules += $modules_online; 
     144    } 
    143145  } 
    144146  ksort($modules);