- 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
22 lines
521 B
PHP
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';
|
|
|
|
?>
|