der Mod mit dem ich das Datum der Anmeldung eines Users ändern kann ist folgender:
#################################################################
## Mod Title: Join Date Mod
## Mod Version: 1.0.0
## Author: Lance Rumsby
## Description: This mod will help you edit the date users joined.
##
## Installation Level: easy
## Installation Time: 2 minute
## Files To Edit: 3
##
## lang_XXX/lang_admin.php
## admin/admin_users.php
## templates/XXX/admin/user_edit_body.tpl
##
## Included Files: n/a
## Generator: phpBB2 Mod Maker
#################################################################
## Security Disclaimer: This MOD Cannot Be Posted To Or Added At Any Non-Official phpBB Sites without the direct permission of the author
#################################################################
##
## Author Note: Thanks to Shaun Marfia for fix the mod.
##
#################################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
#################################################################
#
#-----[ OPEN lang_XXX/lang_admin.php ]------------------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$lang['User_special_explain'] = "These fields are not able to be modified by the users. Here you can set their status and other options that are not given to users.";
#
#-----[ AFTER, ADD ]------------------------------------------
#
$lang['joined'] = "Date User Joined";
#
#-----[ CLOSE lang_XXX/lang_admin.php ]------------------------------------------
#
#
#-----[ OPEN admin/admin_users.php ]------------------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
$user_allowavatar = ( !empty($HTTP_POST_VARS['user_allowavatar']) ) ? intval( $HTTP_POST_VARS['user_allowavatar'] ) : 0;
#
#-----[ AFTER, ADD ]------------------------------------------
#
$user = (!empty($HTTP_POST_VARS['user_regdate'])) ? intval($HTTP_POST_VARS['user_regdate']) : 0;
$user_regdate = strtotime($user_regdate);
#
#-----[ FIND ]------------------------------------------
#
$user_allowavatar = $this_userdata['user_allowavatar'];
#
#-----[ AFTER, ADD ]------------------------------------------
#
$joined = create_date($board_config['default_dateformat'], $this_userdata['user_regdate'], $board_config['board_timezone']);
#
#-----[ FIND ]------------------------------------------
#
'L_ALLOW_AVATAR' => $lang['User_allowavatar'],
#
#-----[ AFTER, ADD ]------------------------------------------
#
'U_JOINED' => $joined,
'L_JOINED' => $lang['joined'],
#
#-----[ FIND ]------------------------------------------
#
$sql = "UPDATE " . USERS_TABLE . "
SET " . $username_sql . $passwd_sql . "user_email = '" . str_replace("\'", "''", $email) . "', user_icq = '" . str_replace("\'", "''", $icq) . "', user_website = '" . str_replace("\'", "''", $website) . "', user_occ = '" . str_replace("\'", "''", $occupation) . "', user_from = '" . str_replace("\'", "''", $location) . "', user_interests = '" . str_replace("\'", "''", $interests) . "', user_sig = '" . str_replace("\'", "''", $signature) . "', user_viewemail = $viewemail, user_aim = '" . str_replace("\'", "''", $aim) . "', user_yim = '" . str_replace("\'", "''", $yim) . "', user_msnm = '" . str_replace("\'", "''", $msn) . "', user_attachsig = $attachsig,
user_sig_bbcode_uid = '$signature_bbcode_uid', user_allowsmile = $allowsmilies, user_allowhtml = $allowhtml, user_allowavatar = $user_allowavatar, user_allowbbcode = $allowbbcode, user_allow_viewonline = $allowviewonline, user_notify = $notifyreply, user_allow_pm = $user_allowpm, user_notify_pm = $notifypm, user_popup_pm = $popuppm, user_lang = '" . str_replace("\'", "''", $user_lang) . "', user_style = $user_style, user_timezone = $user_timezone, user_dateformat = '" . str_replace("\'", "''", $user_dateformat) . "', user_active = $user_status, user_rank = $user_rank" . $avatar_sql . "
WHERE user_id = $user_id";
#
#-----[ REPLACE WITH ]------------------------------------------
#
$sql = "UPDATE " . USERS_TABLE . "
SET " . $username_sql . $passwd_sql . "user_email = '" . str_replace("\'", "''", $email) . "', user_icq = '" . str_replace("\'", "''", $icq) . "', user_website = '" . str_replace("\'", "''", $website) . "', user_occ = '" . str_replace("\'", "''", $occupation) . "', user_from = '" . str_replace("\'", "''", $location) . "', user_interests = '" . str_replace("\'", "''", $interests) . "', user_sig = '" . str_replace("\'", "''", $signature) . "', user_viewemail = $viewemail, user_aim = '" . str_replace("\'", "''", $aim) . "', user_yim = '" . str_replace("\'", "''", $yim) . "', user_msnm = '" . str_replace("\'", "''", $msn) . "', user_attachsig = $attachsig,
user_sig_bbcode_uid = '$signature_bbcode_uid', user_allowsmile = $allowsmilies, user_allowhtml = $allowhtml, user_allowavatar = $user_allowavatar, user_allowbbcode = $allowbbcode, user_allow_viewonline = $allowviewonline, user_notify = $notifyreply, user_allow_pm = $user_allowpm, user_notify_pm = $notifypm, user_popup_pm = $popuppm, user_lang = '" . str_replace("\'", "''", $user_lang) . "', user_style = $user_style, user_timezone = $user_timezone, user_dateformat = '" . str_replace("\'", "''", $user_dateformat) . "', user_active = $user_status, user_regdate = $user_regdate, user_rank = $user_rank" . $avatar_sql . "
WHERE user_id = $user_id";
#
#-----[ CLOSE admin/admin_users.php ]------------------------------------------
#
#
#-----[ OPEN templates/XXX/admin/user_edit_body.tpl ]------------------------------------------
#
#
#-----[ FIND ]------------------------------------------
#
<tr>
<td class="row1" colspan="2"><span class="gensmall">{L_SPECIAL_EXPLAIN}</span></td>
</tr>
#
#-----[ AFTER, ADD ]------------------------------------------
#
<tr>
<td class="row1"><span class="gen">{L_JOINED}</span></td>
<td class="row2">
<input type="text" name="user_regdate" value="{U_JOINED}" size="10" maxlength="20" /></td>
</tr>
#
#-----[ CLOSE templates/XXX/admin/user_edit_body.tpl ]------------------------------------------
#
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
Zum Bug im "Junioradmin" habe ich jetzt einfach die Einstellung so gewählt daß "Admin Index" nichtmehr angezeigt wird. Bis wann kommt denndie neue Version?