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";
}