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";
@@ -553,8 +552,8 @@ class page
}
if ($semester['time_start'] > 36000 && $semester['time_start'] < ($time - 365*24*60*60))
{
- $class_extra .= ' hysterical';
- $hysterical = TRUE;
+ $class_extra .= ' historical';
+ $historical = TRUE;
}
if ($semester['time_start'] < $time && $semester['time_end'] > $time)
@@ -566,8 +565,8 @@ class page
echo ' \n";
}
- if ($hysterical)
- echo ' - (Show hysterical semesters…)
' . PHP_EOL;
+ if ($historical)
+ echo ' - (Show historical semesters…)
' . PHP_EOL;
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();
});