I have a small modification to the admincp/rss_admin.php to make the listing of Bot's more intuitive in the RSS News Feed Manager => Modify Bots ...
Find:
PHP Code:
// ########################## EDIT USER DISPLAY ############################
} else if ($_REQUEST['do'] == 'editUsers') {
print_form_header('rss_admin', 'update_editUser');
print_table_header('Edit a Bot');
$var = "<select name=\"rss_userid\" id=\"sel_rss_userid\" class=\"bginput\">";
$query = $DB_site->query("SELECT * FROM " . TABLE_PREFIX . "rss_user");
while($data = $DB_site->fetch_array($query)) {
$rss_userid = $data['rssuserid'];
$rss_username = $data['userid'];
Add after:
PHP Code:
$rss_source = $data['source'];
Then Find [four lines down from the last modification]:
PHP Code:
$var .= "<option value=\"$rss_userid\">$rss_username (id: $rss_userid)</option>";
Replace with:
PHP Code:
$var .= "<option value=\"$rss_userid\">$rss_source (feed id: $rss_userid)</option>";
HTH