Changeset 1530 for branches/multiuser/admin/channels.php
- Timestamp:
- 08/11/06 02:20:30 (2 years ago)
- Files:
-
- 1 modified
-
branches/multiuser/admin/channels.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/multiuser/admin/channels.php
r1518 r1530 45 45 46 46 echo "<label for=\"add_channel_to_folder\">". LBL_ADMIN_IN_FOLDER . "</label>\n"; 47 folder_combo('add_channel_to_folder');47 echo rss_toolkit_folders_combo('add_channel_to_folder'); 48 48 echo "<label for=\"channel_tags\">" . LBL_TAG_FOLDERS . ":</label>\n"; 49 49 echo "<input type=\"text\" name=\"channel_tags\" id=\"channel_tags\" />\n"; … … 139 139 $dead = true; 140 140 } else { 141 $dead = (time() - strtotime($daterefreshed) > getConfig('rss.config.deadthreshhold')*60 ? true : false);141 $dead = (time() - strtotime($daterefreshed) > getConfig('rss.config.deadthreshhold')*60*60 ? true : false); 142 142 } 143 143 … … 187 187 ."<legend>Selected...</legend>\n" 188 188 ."<p>\n" 189 ."<label for=\"me_folder\">".LBL_ADMIN_CHANNEL_FOLDER."</label>\n" ;190 folder_combo('me_folder',null);189 ."<label for=\"me_folder\">".LBL_ADMIN_CHANNEL_FOLDER."</label>\n" 190 .rss_toolkit_folders_combo('me_folder',null); 191 191 192 192 echo … … 785 785 786 786 // Folder 787 ."<p><label for=\"c_parent\">". LBL_ADMIN_CHANNEL_FOLDER ."</label>\n" ;788 789 folder_combo('c_parent',$parent);790 echo"</p>\n";787 ."<p><label for=\"c_parent\">". LBL_ADMIN_CHANNEL_FOLDER ."</label>\n" 788 789 .rss_toolkit_folders_combo('c_parent',$parent) 790 ."</p>\n"; 791 791 792 792 // Tags
