aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-07-08 20:31:13 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-07-08 20:31:13 +0000
commit5ce58d0cf0ca60dfab15276de007448f767d9993 (patch)
tree697cebd18b031ae1b79ae0d96dcb3d3bc13d95f2
parent613d62ac79fb62bd523274d2793b015c00104237 (diff)
downloadforums-5ce58d0cf0ca60dfab15276de007448f767d9993.tar
forums-5ce58d0cf0ca60dfab15276de007448f767d9993.tar.gz
forums-5ce58d0cf0ca60dfab15276de007448f767d9993.tar.bz2
forums-5ce58d0cf0ca60dfab15276de007448f767d9993.tar.xz
forums-5ce58d0cf0ca60dfab15276de007448f767d9993.zip
Changed filename
git-svn-id: file:///svn/phpbb/trunk@606 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r--phpBB/groupcp.php41
-rw-r--r--phpBB/includes/page_header.php2
-rw-r--r--phpBB/templates/Default/overall_header.tpl3
-rw-r--r--phpBB/templates/PSO/overall_header.tpl2
4 files changed, 45 insertions, 3 deletions
diff --git a/phpBB/groupcp.php b/phpBB/groupcp.php
new file mode 100644
index 0000000000..58ba4de4a7
--- /dev/null
+++ b/phpBB/groupcp.php
@@ -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);
+
+?> \ No newline at end of file
diff --git a/phpBB/includes/page_header.php b/phpBB/includes/page_header.php
index 931c84614a..e7a676ba2f 100644
--- a/phpBB/includes/page_header.php
+++ b/phpBB/includes/page_header.php
@@ -245,7 +245,7 @@ $template->assign_vars(array(
"U_VIEWONLINE" => append_sid("viewonline.$phpEx"),
"U_LOGIN_LOGOUT" => append_sid($u_login_logout),
"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_LOGIN_ACTION" => append_sid("login.$phpEx"),
diff --git a/phpBB/templates/Default/overall_header.tpl b/phpBB/templates/Default/overall_header.tpl
index f947f7d510..0d041015c3 100644
--- a/phpBB/templates/Default/overall_header.tpl
+++ b/phpBB/templates/Default/overall_header.tpl
@@ -57,7 +57,8 @@ A:Hover {
<tr>
<td align="left" valign="bottom">{L_WELCOMETO} {SITENAME}<br>{LOGIN_STATUS}</td>
<td align="right" valign="bottom">[<a href="{U_REGISTER}">{L_REGISTER}</a>]&nbsp;
- [<a href="{U_PROFILE}">{L_PROFILE}</a>]&nbsp;
+ [<a href="{U_PROFILE}">{L_PROFILE}</a>]&nbsp;
+ [<a href="{U_GROUP_CP}">{L_USERGROUPS}</a>]&nbsp;
[<a href="{U_SEARCH}">{L_SEARCH}</a>]&nbsp;
[<a href="{U_PRIVATEMSGS}">{L_PRIVATEMSGS}</a>]&nbsp;
[<a href="{U_MEMBERSLIST}">{L_MEMBERLIST}</a>]&nbsp;
diff --git a/phpBB/templates/PSO/overall_header.tpl b/phpBB/templates/PSO/overall_header.tpl
index 14e1d24a13..f33f70acb1 100644
--- a/phpBB/templates/PSO/overall_header.tpl
+++ b/phpBB/templates/PSO/overall_header.tpl
@@ -49,7 +49,7 @@ INPUT.text {font-family:"Courier New",courier;font-size:8pt;}
<tr>
<td><span class="gensmall"><a href="{U_FAQ}">{L_FAQ}</a>&nbsp;|&nbsp;<a href="{U_MEMBERLIST}">{L_MEMBERLIST}</a>&nbsp;|&nbsp;<a href="{U_REGISTER}">{L_REGISTER}</a>&nbsp;|&nbsp<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="right"><span class="gensmall"><a href="{U_PROFILE}">{L_PROFILE}</a>&nbsp;|&nbsp;<a href="{U_GROUP_ADMIN}">{L_USERGROUPS}</a>&nbsp;|&nbsp;<a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a></span></td>
+ <td align="right"><span class="gensmall"><a href="{U_PROFILE}">{L_PROFILE}</a>&nbsp;|&nbsp;<a href="{U_GROUP_CP}">{L_USERGROUPS}</a>&nbsp;|&nbsp;<a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a></span></td>
</tr>
{S_LOGINBOX}
</table></td>