Changeset 1561 for trunk/gregarius/cls/wrappers/toolkit.php
- Timestamp:
- 09/09/06 14:52:23 (2 years ago)
- Files:
-
- 1 modified
-
trunk/gregarius/cls/wrappers/toolkit.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/gregarius/cls/wrappers/toolkit.php
r1551 r1561 40 40 $ret .= "\t<option value=\"$id\"" 41 41 .($selected > -1 && $selected == $id ? " selected=\"selected\"":"") 42 .">" . (($name == "")? LBL_HOME_FOLDER:$name) ."</option>\n";42 .">" . (($name == "")?__('Root'):$name) ."</option>\n"; 43 43 } 44 44 $ret .= "</select>\n"; … … 51 51 ."\t\t\t<option value=\"". $all_channels_id ."\"" 52 52 .(0 == $selected?" selected=\"selected\"":"") 53 .">" . LBL_ALL. "</option>\n";53 .">" . __('All') . "</option>\n"; 54 54 55 55 $sql = "select " … … 79 79 } 80 80 if ($parent_ == "") { 81 $parent_ = LBL_HOME_FOLDER;81 $parent_ = __('Root'); 82 82 } 83 83 $ret .= "\t\t\t<optgroup label=\"$parent_ /\">\n";
