Changeset 1596

Show
Ignore:
Timestamp:
06/28/08 17:56:06 (3 months ago)
Author:
alo
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • cherokee/trunk/ChangeLog

    r1595 r1596  
     12008-06-28  Alvaro Lopez Ortega  <alvaro@alobbs.com> 
     2 
     3        * admin/Module.py (modules_available): There might be entries with 
     4        an empty name, in which case, they ought to be added to the 
     5        resulting list. 
     6 
    172008-06-27  Alvaro Lopez Ortega  <alvaro@alobbs.com> 
    28 
  • cherokee/trunk/admin/Module.py

    r1561 r1596  
    3535        plugin, name = entry 
    3636 
    37         if cherokee_has_plugin (plugin): 
     37        if not len(plugin) or \ 
     38           cherokee_has_plugin (plugin): 
    3839            new_module_list.append(entry) 
    3940