oc-server3/htdocs/newlogpics.php
2013-03-14 09:44:36 +01:00

24 lines
627 B
PHP

<?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
*
* Display some status information about the server and Opencaching
***************************************************************************/
require('./lib2/web.inc.php');
require('./lib2/logic/logpics.inc.php');
$tpl->name = 'newlogpics';
$tpl->menuitem = MNU_START_NEWLOGPICS;
$tpl->caching = true;
$tpl->cache_lifetime = 300;
if (!$tpl->is_cached())
$tpl->assign('pictures', get_logpics(LOGPICS_FOR_NEWPICS_GALLERY));
$tpl->display();
?>