view pages/schedule.inc.php @ 1086:4a95cd4fa341

Check for existence of "expires" field in session data.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 26 Jan 2017 00:30:58 +0200
parents 7e497188e4c6
children bbc0a3d0b51e
line wrap: on
line source

<?php
//
// FAPWeb - Simple Web-based Demoparty Management System
// Event schedule / description
// (C) Copyright 2012-2015 Tecnic Software productions (TNSP)
//
if (stChkSetting("showSchedule"))
{
  echo stGetSetting("eventDescription");
}
else
{
  echo
    "<h1>Sorry, schedule not available</h1>\n".
    "<p>Check back soon.</p>\n";
}
?>