diff --git a/inc/class.page.php b/inc/class.page.php --- a/inc/class.page.php +++ b/inc/class.page.php @@ -535,10 +535,9 @@ class page $time = time(); /** - * Hysterical... or historical? Uncle John Brink prefers - * ``hysterical''... + * Show the historical data. This doesn't seem useful, but it's here. */ - $hysterical = FALSE; + $historical = FALSE; echo "

\n"; echo "

\n"; echo "

\n"; } diff --git a/scripts/scheduleInput.js b/scripts/scheduleInput.js --- a/scripts/scheduleInput.js +++ b/scripts/scheduleInput.js @@ -941,10 +941,10 @@ jQuery(document).ready(function() { }); /* For the ``Select Semester'' page */ - jQuery('.hysterical-show-a').click(function() { - jQuery('.hysterical').show(); - jQuery('.hysterical-show').hide(); + jQuery('.historical-show-a').click(function() { + jQuery('.historical').show(); + jQuery('.historical-show').hide(); }); - jQuery('.hysterical-show').show(); - jQuery('.hysterical').hide(); + jQuery('.historical-show').show(); + jQuery('.historical').hide(); });