Changeset 3640:7df99527ffd0 for inc/admin/lib.moduleslist.php
- Timestamp:
- 12/29/17 15:08:35 (8 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inc/admin/lib.moduleslist.php
r3639 r3640 633 633 if (in_array('expander', $cols)) { 634 634 echo 635 html::escapeHTML($module['name']) ;635 html::escapeHTML($module['name']).($id != $module['name'] ? sprintf(__(' (%s)'),$id) : ''); 636 636 } 637 637 else { 638 638 echo 639 639 '<label for="'.html::escapeHTML($this->list_id).'_modules_'.html::escapeHTML($id).'">'. 640 html::escapeHTML($module['name']). 640 html::escapeHTML($module['name']).($id != $module['name'] ? sprintf(__(' (%s)'),$id) : ''). 641 641 '</label>'; 642 642 } … … 644 644 else { 645 645 echo 646 html::escapeHTML($module['name']). 646 html::escapeHTML($module['name']).($id != $module['name'] ? sprintf(__(' (%s)'),$id) : ''). 647 647 form::hidden(array('modules['.$count.']'), html::escapeHTML($id)); 648 648 }
Note: See TracChangeset
for help on using the changeset viewer.