aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/ucp/ucp_zebra.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2004-10-13 19:30:02 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2004-10-13 19:30:02 +0000
commitc941f666cf5184b508589fc151772f42f1a2d4c5 (patch)
tree88d74b4c9ac57e16682b93878885d6f809fe55a5 /phpBB/includes/ucp/ucp_zebra.php
parent4804c05bca3e49a62a3fb91a988364024e745a5c (diff)
downloadforums-c941f666cf5184b508589fc151772f42f1a2d4c5.tar
forums-c941f666cf5184b508589fc151772f42f1a2d4c5.tar.gz
forums-c941f666cf5184b508589fc151772f42f1a2d4c5.tar.bz2
forums-c941f666cf5184b508589fc151772f42f1a2d4c5.tar.xz
forums-c941f666cf5184b508589fc151772f42f1a2d4c5.zip
- ucp register/remind/activate fixes mostly regarding account activation
- general ucp fixing (profile and ucp_main) - created three new functions (return correct topic author string, generate topic related pagination and get topic type/status...). These general bits are used on several pages (subscribed topics, bookmarks, viewforum). - config basic schema fix - commented out inline fix for unread topic tracking in viewforum, instead tried another method (hopefully working as well) git-svn-id: file:///svn/phpbb/trunk@5001 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/ucp/ucp_zebra.php')
-rw-r--r--phpBB/includes/ucp/ucp_zebra.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/includes/ucp/ucp_zebra.php b/phpBB/includes/ucp/ucp_zebra.php
index d71527b579..b93c01a370 100644
--- a/phpBB/includes/ucp/ucp_zebra.php
+++ b/phpBB/includes/ucp/ucp_zebra.php
@@ -18,6 +18,7 @@ class ucp_zebra extends module
global $config, $db, $user, $auth, $SID, $template, $phpbb_root_path, $phpEx;
$submit = (!empty($_POST['submit']) || !empty($_GET['add'])) ? true : false;
+ $s_hidden_fields = '';
if ($submit)
{
@@ -174,7 +175,7 @@ class ucp_zebra extends module
$db->sql_freeresult($result);
$template->assign_vars(array(
- 'L_TITLE' => $user->lang['UCP_' . strtoupper($mode)],
+ 'L_TITLE' => $user->lang['UCP_ZEBRA_' . strtoupper($mode)],
'U_SEARCH_USER' => "memberlist.$phpEx$SID&amp;mode=searchuser&amp;form=ucp&amp;field=add",