view pages/about.inc.php @ 565:ed2247111fdd

Bump copyright years.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 10 Mar 2014 17:08:33 +0200
parents 8693052c66a9
children ce11ea112a65
line wrap: on
line source

<?
//
// FAPWeb Simple Demoparty System
// About page
// (C) Copyright 2012-2014 Tecnic Software productions (TNSP)
//
echo stGetSetting("aboutDescription");

if (stGetSetting("showNewsOnAbout") &&
  ($res = stExecSQL("SELECT * FROM news ORDER BY utime DESC LIMIT 2")) !== FALSE)
{
  foreach ($res as $item)
    stPrintNewsItem($item);

  echo "<a class=\"moreNews\" href=\"news\">More news ...</a>\n";
}
?>