import
[web.mtrack] / web / index.php
1 <?php # vim:ts=2:sw=2:et:
2 /* For licensing and copyright terms, see the file named LICENSE */
3 include '../inc/common.php';
4
5 if (MTrackAuth::whoami() === 'anonymous') {
6   header("Location: {$ABSWEB}wiki.php");
7   exit;
8 }
9
10 mtrack_head("Today");
11 echo MTrackWiki::format_wiki_page('Today');
12
13 mtrack_foot();
14