Changeset 6904
- Timestamp:
- 09/30/08 15:25:06 (2 months ago)
- Files:
-
- modules/branches/2.5/core/page.ampusers.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.5/core/page.ampusers.php
r6768 r6904 35 35 foreach($module['items'] as $itemKey => $item) { 36 36 $listKey = (!empty($item['display']) ? $item['display'] : $itemKey); 37 $item['rawname'] = $module['rawname']; 37 38 $module_list[ $listKey ] = $item; 38 39 } … … 220 221 echo "<option value=\"".$key."\""; 221 222 if (in_array($key, $sections)) echo " SELECTED"; 223 $label = dgettext($row['rawname'],$row['name']); 224 if ($label == $row['name']) { 225 $label = _($label); 226 } 222 227 echo ">"._($row['name'])."</option>\n"; 223 228 }
