view news.inc.php @ 119:99e7569c9f4f

Change the default of some boolean settings.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 22 Oct 2013 14:22:02 +0300
parents e36c4d2b09c4
children 5837b9333964
line wrap: on
line source

<?
echo stGetSetting("newsDescription");

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