mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Changed filename
git-svn-id: file:///svn/phpbb/trunk@606 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
613d62ac79
commit
5ce58d0cf0
4 changed files with 45 additions and 3 deletions
41
phpBB/groupcp.php
Normal file
41
phpBB/groupcp.php
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
<?php
|
||||||
|
/***************************************************************************
|
||||||
|
* groupcp.php
|
||||||
|
* -------------------
|
||||||
|
* begin : Saturday, Feb 13, 2001
|
||||||
|
* copyright : (C) 2001 The phpBB Group
|
||||||
|
* email : support@phpbb.com
|
||||||
|
*
|
||||||
|
* $Id$
|
||||||
|
*
|
||||||
|
*
|
||||||
|
***************************************************************************/
|
||||||
|
|
||||||
|
|
||||||
|
/***************************************************************************
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modified
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
*
|
||||||
|
***************************************************************************/
|
||||||
|
|
||||||
|
include('extension.inc');
|
||||||
|
include('common.'.$phpEx);
|
||||||
|
|
||||||
|
//
|
||||||
|
// Start session management
|
||||||
|
//
|
||||||
|
$userdata = session_pagestart($user_ip, PAGE_PROFILE, $session_length);
|
||||||
|
init_userprefs($userdata);
|
||||||
|
//
|
||||||
|
// End session management
|
||||||
|
//
|
||||||
|
|
||||||
|
include('includes/page_header.'.$phpEx);
|
||||||
|
|
||||||
|
include('includes/page_tail.'.$phpEx);
|
||||||
|
|
||||||
|
?>
|
|
@ -245,7 +245,7 @@ $template->assign_vars(array(
|
||||||
"U_VIEWONLINE" => append_sid("viewonline.$phpEx"),
|
"U_VIEWONLINE" => append_sid("viewonline.$phpEx"),
|
||||||
"U_LOGIN_LOGOUT" => append_sid($u_login_logout),
|
"U_LOGIN_LOGOUT" => append_sid($u_login_logout),
|
||||||
"U_MEMBERSLIST" => append_sid("memberlist.".$phpEx),
|
"U_MEMBERSLIST" => append_sid("memberlist.".$phpEx),
|
||||||
"U_GROUP_ADMIN" => append_sid("groupadmin.".$phpEx),
|
"U_GROUP_CP" => append_sid("groupcp.".$phpEx),
|
||||||
|
|
||||||
"S_TIMEZONE" => $s_timezone,
|
"S_TIMEZONE" => $s_timezone,
|
||||||
"S_LOGIN_ACTION" => append_sid("login.$phpEx"),
|
"S_LOGIN_ACTION" => append_sid("login.$phpEx"),
|
||||||
|
|
|
@ -58,6 +58,7 @@ A:Hover {
|
||||||
<td align="left" valign="bottom">{L_WELCOMETO} {SITENAME}<br>{LOGIN_STATUS}</td>
|
<td align="left" valign="bottom">{L_WELCOMETO} {SITENAME}<br>{LOGIN_STATUS}</td>
|
||||||
<td align="right" valign="bottom">[<a href="{U_REGISTER}">{L_REGISTER}</a>]
|
<td align="right" valign="bottom">[<a href="{U_REGISTER}">{L_REGISTER}</a>]
|
||||||
[<a href="{U_PROFILE}">{L_PROFILE}</a>]
|
[<a href="{U_PROFILE}">{L_PROFILE}</a>]
|
||||||
|
[<a href="{U_GROUP_CP}">{L_USERGROUPS}</a>]
|
||||||
[<a href="{U_SEARCH}">{L_SEARCH}</a>]
|
[<a href="{U_SEARCH}">{L_SEARCH}</a>]
|
||||||
[<a href="{U_PRIVATEMSGS}">{L_PRIVATEMSGS}</a>]
|
[<a href="{U_PRIVATEMSGS}">{L_PRIVATEMSGS}</a>]
|
||||||
[<a href="{U_MEMBERSLIST}">{L_MEMBERLIST}</a>]
|
[<a href="{U_MEMBERSLIST}">{L_MEMBERLIST}</a>]
|
||||||
|
|
|
@ -49,7 +49,7 @@ INPUT.text {font-family:"Courier New",courier;font-size:8pt;}
|
||||||
<tr>
|
<tr>
|
||||||
<td><span class="gensmall"><a href="{U_FAQ}">{L_FAQ}</a> | <a href="{U_MEMBERLIST}">{L_MEMBERLIST}</a> | <a href="{U_REGISTER}">{L_REGISTER}</a> | <a href="{U_SEARCH}">{L_SEARCH}</a></span></td>
|
<td><span class="gensmall"><a href="{U_FAQ}">{L_FAQ}</a> | <a href="{U_MEMBERLIST}">{L_MEMBERLIST}</a> | <a href="{U_REGISTER}">{L_REGISTER}</a> | <a href="{U_SEARCH}">{L_SEARCH}</a></span></td>
|
||||||
<td align="center"><span class="gensmall">{L_LAST_VISIT} {S_LAST_VISIT_DATE}</span></td>
|
<td align="center"><span class="gensmall">{L_LAST_VISIT} {S_LAST_VISIT_DATE}</span></td>
|
||||||
<td align="right"><span class="gensmall"><a href="{U_PROFILE}">{L_PROFILE}</a> | <a href="{U_GROUP_ADMIN}">{L_USERGROUPS}</a> | <a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a></span></td>
|
<td align="right"><span class="gensmall"><a href="{U_PROFILE}">{L_PROFILE}</a> | <a href="{U_GROUP_CP}">{L_USERGROUPS}</a> | <a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a></span></td>
|
||||||
</tr>
|
</tr>
|
||||||
{S_LOGINBOX}
|
{S_LOGINBOX}
|
||||||
</table></td>
|
</table></td>
|
||||||
|
|
Loading…
Add table
Reference in a new issue