36 lines
1.1 KiB
PHP
36 lines
1.1 KiB
PHP
<?php
|
|
/***************************************************************************
|
|
* For license information see doc/license.txt
|
|
*
|
|
* Unicode Reminder メモ
|
|
***************************************************************************/
|
|
|
|
require 'lib2/web.inc.php';
|
|
|
|
$tpl->name = 'ownerlogs';
|
|
$tpl->menuitem = MNU_MYPROFILE_OWNERLOGS;
|
|
$login->verify();
|
|
|
|
if (isset($_REQUEST['userid']) && $login->hasAdminPriv(ADMIN_USER))
|
|
$ownerid = $_REQUEST['userid']+0;
|
|
else if ($login->userid == 0)
|
|
$tpl->redirect('login.php?target=ownerlogs.php');
|
|
else
|
|
$ownerid = $login->userid;
|
|
|
|
$ownername = sql_value("SELECT `username` FROM `user` WHERE `user_id`='&1'", false, $ownerid);
|
|
if (!sql_value("SELECT `user_id` FROM `user` WHERE `user_id`='&1'", false, $ownerid))
|
|
$tpl->error(ERROR_USER_NOT_EXISTS);
|
|
$tpl->assign('ownername', $ownername);
|
|
$tpl->assign('ownerid', $ownerid);
|
|
|
|
if ($ownerid != $login->userid)
|
|
$show_own_logs = true;
|
|
else
|
|
$show_own_logs = isset($_REQUEST['ownlogs']) && $_REQUEST['ownlogs'];
|
|
$tpl->assign('show_own_logs', $show_own_logs);
|
|
$tpl->assign('ownlogs', $ownerid == $login->userid);
|
|
|
|
require 'newlogs.php';
|
|
|
|
?>
|