]> git.mjollnir.org Git - moodle.git/commitdiff
Fixed "can't add RSS feed" bug MDL-8180
authormoodler <moodler>
Thu, 25 Jan 2007 06:37:59 +0000 (06:37 +0000)
committermoodler <moodler>
Thu, 25 Jan 2007 06:37:59 +0000 (06:37 +0000)
blocks/rss_client/config_instance.html

index da2f3930ef56e699f8978c4d3f685cea9175c58e..f2919bc6b17376b72f7c32af9cfbbbba5f15ac2d 100644 (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>';
 }
-?>
\ No newline at end of file
+?>