oc-server3/htdocs/ownlogs.php
following 9c1d4a7573 log history improvements
- fixes order in log history for own caches; show log date instead of creation date
- added pager to log history for own caches
- increased page number font size
- added 'more' button to own log list to show all own logs
- nicer 'myhome' display when no data present
2013-08-12 02:52:05 +02:00

22 lines
521 B
PHP

<?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
***************************************************************************/
require 'lib2/web.inc.php';
$tpl->name = 'ownlogs';
$tpl->menuitem = MNU_MYPROFILE_OWNLOGS;
$login->verify();
if ($login->userid == 0)
$tpl->redirect('login.php?target=ownlogs.php');
$userid = $login->userid;
$tpl->assign('ownlogs', true);
require 'newlogs.php';
?>