view news.inc.php @ 107:6e076b3630a0

Cleanup the code a bit.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 21 Oct 2013 22:47:29 +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);
}
?>