diff --git a/class.section.php b/class.section.php
--- a/class.section.php
+++ b/class.section.php
@@ -202,111 +202,6 @@ class Section
   
   /**
    * \brief
-   *   Create output suitable for editing on input.php.
-   *
-   * \see Classes::input_form_render()
-   *
-   * \param $class_key
-   *   The same $class_key passed to Classes::input_form_render().
-   * \param $section_key
-   *   The index of this section.
-   * \param $section_format
-   *   The type of input method used for this section. Valid values
-   *   are 'numerous', 'numbered', and 'lettered'
-   */
-  public function input_form_render($class_key, $section_key, $section_format = 'numerous')
-  {
-    static $n = "\n";
-    $out = '
' . $n
-      . '   | ' . $n;
-    switch ($section_format)
-      {
-      case 'numerous':
-      default:
-	/* see customIds() in scheduleInput.js */
-	$out .= '  ' . $n
-	. '    ' . $n
-	. "   | \n";
-      break;
-      }
-
-    $out .= "  \n"
-      . '    \n"
-      . "   | \n";
-
-    /* ugh, code duplication :-(  --binki commenting on his own code*/
-    $out .= "  \n"
-      . '    \n"
-      . "   | \n";
-
-    foreach ($this->bdays as $day_key => $day_enabled)
-      {
-	if ($day_enabled)
-	  $day_enabled = 'checked="checked"';
-	else
-	  $day_enabled = '';
-	$out .= "  \n"
-	  . '    ' . $n
-	  . "   | \n";
-      }
-
-    $out .= '   | ' . $n;
-    $out .= '   | ' . $n;
-
-    $out .= "
\n";
-
-    return $out;
-  }
-
-  /**
-   * \brief
    *   Splits up a section specifier into dept, course number, and
    *   section.
    *