Fixed "can't add RSS feed" bug MDL-8180

This commit is contained in:
moodler
2007-01-25 06:37:59 +00:00
parent 88dda743cf
commit 5bf0415584
+4 -2
View File
@@ -165,12 +165,14 @@ if ($currentaction == 'configblock') {
<?php
} else {
global $act, $url, $rssid, $preferredtitle, $shared;
print '</form>'; // Closes off page form
print '<table cellpadding="9" cellspacing="0" class="blockconfigtable">';
print '<tr valign="top"><td>';
$context = get_context_instance(CONTEXT_BLOCK, $this->instance->id);
rss_display_feeds($id, $USER->id, '', $context);
// print '</form>'; //not sure that this is needed //yu: took it out bad xhtml
rss_print_form($act, $url, $rssid, $preferredtitle, $shared, $id, $context);
print '</td></tr></table>';
}
?>
?>