view pages/news.inc.php @ 1024:2a96426159f1

Fix configuration file checking.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 06 Nov 2015 21:41:27 +0200
parents ffacd904fd1f
children 7e497188e4c6
line wrap: on
line source

<?
//
// FAPWeb - Simple Web-based Demoparty Management System
// News page
// (C) Copyright 2012-2015 Tecnic Software productions (TNSP)
//
echo stGetSetting("newsHeader");

if (($res = stExecSQL("SELECT * FROM news ORDER BY utime DESC")) !== FALSE)
{
  foreach ($res as $item)
    stPrintNewsItem($item);
}
?>