Changeset - d6877df71d44
[Not reviewed]
default
0 1 0
Ethan Zonca - 15 years ago 2011-01-27 18:27:31
ez@ethanzonca.com
Quick validation fix
1 file changed with 0 insertions and 2 deletions:
0 comments (0 inline, 0 general)
inc/class.page.php
Show inline comments
 
@@ -280,51 +280,49 @@ class page
 
                    echo '<p class="' . $hidden . '">';
 
 		    echo '<a href="' . $process_php_s . $key . '" title="View schedule #' . $key . '">#' . $key . "</a>:\n "
 
		      . htmlentities($name)
 
		      . ' <a href="input.php?s=' . $key . '">edit</a>'
 
		      . ' <a href="process.php?del=' . $key . '">delete</a>'
 
		      . "<br /><br />\n"
 
                      . '</p>';
 
	   }
 
	  }
 
	echo '<div id="showLess"><a href="#">Less...</a></div></div>';
 
      }
 
    echo '</p>';
 
  }
 

	
 
  /**
 
   * \brief
 
   *   Display a list of schools the user might be from.
 
   * \param $linkto
 
   *   The to which a &school= or ?school= query string should be
 
   *   appended.
 
   */
 
  public function showSchools($linkto)
 
  {
 
    echo "<p>\n";
 
    echo "  <div id=\"schoolBox\">\n";
 
    echo school_list_html($this->school['id'], $linkto);
 
    echo "  </div> <!-- id=\"schoolBox\" -->\n";
 
    echo "</p>\n";
 
  }
 

	
 
  /**
 
   * \brief
 
   *   Display school-specific instructions for using slate_permutate.
 
   */
 
  public function showSchoolInstructions()
 
  {
 
    echo "<div id=\"schoolInstructionsBox\">\n";
 
    echo school_instructions_html($this->school);
 
    echo "</div> <!-- id=\"schoolInstructionsBox\" -->\n";
 
  }
 

	
 
  /**
 
   * \brief
 
   *   Print out a vocative form of a student's identity. For example,
 
   *   Dearborn Christin Schoolers are called ``Knights'' as are
 
   *   Calvin College students.
 
   *
 
   * The third argument is used to determine whether or not this
 
   * address _needs_ to be printed out. For example, in some sentences
 
   * when addressing generic students, it makes no sense to say the
 
   * standard ``Welcome, student'' or ``Dear generic person, how do
0 comments (0 inline, 0 general)