include("../../../bin/general.phps");
include("../../../bin/logs.phps");
$tag = "mush";
$subtag = "roleplay logs / star wars mush";
$style = style_check();
/* Since this is a logs page, we need to figure out what logs we're going
* to be displaying by default. This will be dependent upon what section of
* logs we're dealing with, and what the last year of logs reported for that
* section in the database is.
*/;
$section = "shenner";
if (isset($_GET['year']))
$year = $_GET['year'];
else
$year = get_year($section);
$title = "shenner logs - $year";
$default_blurb = 8;
$no_mirror = 1;
$simpleblurb="
These are logs of roleplay on
Star Wars MUSH from
the point of view of my former character
Shenner.
";
$is_submenu = 1;
$parent = "mush index";
/* We need to print off the links for this particular section of logs. */;
$content = do_log_links($section);
$content .= display_logs($section, $year);
$content .= do_log_links($section);
include("../../../src/template-sub.php");
?>