aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2004-02-11 18:28:24 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2004-02-11 18:28:24 +0000
commit67755abf252f38dea557485de7d72e6d29320a8a (patch)
treedb0cd9046d498c9e35ac4989f217d581578d52b7 /phpBB
parentf72d117ce56e4c348c220501a8c9153dadc3fbfd (diff)
downloadforums-67755abf252f38dea557485de7d72e6d29320a8a.tar
forums-67755abf252f38dea557485de7d72e6d29320a8a.tar.gz
forums-67755abf252f38dea557485de7d72e6d29320a8a.tar.bz2
forums-67755abf252f38dea557485de7d72e6d29320a8a.tar.xz
forums-67755abf252f38dea557485de7d72e6d29320a8a.zip
Profile, prefs, feedback
git-svn-id: file:///svn/phpbb/trunk@4827 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/adm/admin_users.php400
-rw-r--r--phpBB/adm/admin_viewlogs.php2
-rw-r--r--phpBB/adm/editor.js306
-rw-r--r--phpBB/adm/subSilver.css2
-rw-r--r--phpBB/common.php1
5 files changed, 658 insertions, 53 deletions
diff --git a/phpBB/adm/admin_users.php b/phpBB/adm/admin_users.php
index b0a8f89fdb..dad6a47bee 100644
--- a/phpBB/adm/admin_users.php
+++ b/phpBB/adm/admin_users.php
@@ -36,6 +36,7 @@ include($phpbb_root_path.'includes/functions_profile_fields.'.$phpEx);
//
$mode = request_var('mode', '');
$action = request_var('action', 'overview');
+$start = request_var('start', 0);
$username = request_var('username', '');
$user_id = request_var('u', 0);
$ip = request_var('ip', '');
@@ -47,6 +48,7 @@ $quicktools = request_var('quicktools', '');
$submit = (isset($_POST['update'])) ? true : false;
$confirm = (isset($_POST['confirm'])) ? true : false;
$cancel = (isset($_POST['cancel'])) ? true : false;
+$preview = (isset($_POST['preview'])) ? true : false;
$error = array();
@@ -119,7 +121,7 @@ adm_page_header($user->lang['MANAGE']);
//
// User has submitted a form, process it
//
-if ($submit)
+if ($submit || $preview)
{
switch ($action)
{
@@ -473,6 +475,16 @@ if ($submit)
break;
+ case 'feedback':
+
+ if ($message = request_var('message', ''))
+ {
+ add_log('user', $user_id, 'LOG_USER_GENERAL', $message);
+ trigger_error("ADDED");
+ }
+
+ break;
+
case 'profile':
$var_ary = array(
@@ -672,9 +684,120 @@ if ($submit)
break;
case 'avatar':
+
+ $can_upload = (file_exists($phpbb_root_path . $config['avatar_path']) && is_writeable($phpbb_root_path . $config['avatar_path']) && $file_uploads) ? true : false;
+
+ $var_ary = array(
+ 'uploadurl' => (string) '',
+ 'remotelink' => (string) '',
+ 'width' => (string) '',
+ 'height' => (string) '',
+ );
+
+ foreach ($var_ary as $var => $default)
+ {
+ $data[$var] = request_var($var, $default);
+ }
+
+ $var_ary = array(
+ 'uploadurl' => array('string', true, 5, 255),
+ 'remotelink' => array('string', true, 5, 255),
+ 'width' => array('string', true, 1, 3),
+ 'height' => array('string', true, 1, 3),
+ );
+
+ $error = validate_data($data, $var_ary);
+
+ if (!sizeof($error))
+ {
+ $data['user_id'] = $user_id;
+
+ if ((!empty($_FILES['uploadfile']['tmp_name']) || $data['uploadurl']) && $can_upload)
+ {
+ list($type, $filename, $width, $height) = avatar_upload($data, $error);
+ }
+ else if ($data['remotelink'])
+ {
+ list($type, $filename, $width, $height) = avatar_remote($data, $error);
+ }
+ else if ($delete)
+ {
+ $type = $filename = $width = $height = '';
+ }
+ }
+
+ if (!sizeof($error))
+ {
+ // Do we actually have any data to update?
+ if (sizeof($data))
+ {
+ $sql_ary = array(
+ 'user_avatar' => $filename,
+ 'user_avatar_type' => $type,
+ 'user_avatar_width' => $width,
+ 'user_avatar_height' => $height,
+ );
+
+ echo $sql = 'UPDATE ' . USERS_TABLE . '
+ SET ' . $db->sql_build_array('UPDATE', $sql_ary) . "
+ WHERE user_id = $user_id";
+ $db->sql_query($sql);
+
+ // Delete old avatar if present
+ if ($user_avatar && $filename != $user_avatar)
+ {
+ avatar_delete($user_avatar);
+ }
+ }
+
+ trigger_error($message);
+ }
+
+ extract($data);
+ unset($data);
+
break;
- case 'signature':
+ case 'sig':
+
+ $var_ary = array(
+ 'enable_html' => (bool) $config['allow_html'],
+ 'enable_bbcode' => (bool) $config['allow_bbcode'],
+ 'enable_smilies' => (bool) $config['allow_smilies'],
+ 'enable_urls' => true,
+ 'signature' => (string) $user_sig,
+
+ );
+
+ foreach ($var_ary as $var => $default)
+ {
+ $$var = request_var($var, $default);
+ }
+
+ if (!$preview)
+ {
+ include($phpbb_root_path . 'includes/message_parser.'.$phpEx);
+
+ $message_parser = new parse_message();
+
+ $message_parser->message = $signature;
+ $message_parser->parse($enable_html, $enable_bbcode, $enable_urls, $enable_smilies);
+
+ $sql_ary = array(
+ 'user_sig' => (string) $message_parser->message,
+ 'user_sig_bbcode_uid' => (string) $message_parser->bbcode_uid,
+ 'user_sig_bbcode_bitfield' => (int) $message_parser->bbcode_bitfield
+ );
+
+ $sql = 'UPDATE ' . USERS_TABLE . '
+ SET ' . $db->sql_build_array('UPDATE', $sql_ary) . "
+ WHERE user_id = $user_id";
+ $db->sql_query($sql);
+
+ $message = $user->lang['PROFILE_UPDATED'] . '<br /><br />' . sprintf($user->lang['RETURN_UCP'], "<a href=\"ucp.$phpEx$SID&amp;i=$id&amp;mode=$mode\">", '</a>');
+ trigger_error($message);
+ }
+
break;
case 'groups':
@@ -706,11 +829,41 @@ if ($username || $user_id)
?>
+<script language="javascript" type="text/javascript">
+<!--
+
+var form_name = 'admin';
+var text_name = 'signature';
+
+// Define the bbCode tags
+bbcode = new Array();
+bbtags = new Array('[b]','[/b]','[i]','[/i]','[u]','[/u]','[quote]','[/quote]','[code]','[/code]','[list]','[/list]','[list=]','[/list]','[img]','[/img]','[url]','[/url]');
+imageTag = false;
+
+// Helpline messages
+b_help = "<?php echo $user->lang['BBCODE_B_HELP']; ?>";
+i_help = "<?php echo $user->lang['BBCODE_I_HELP']; ?>";
+u_help = "<?php echo $user->lang['BBCODE_U_HELP']; ?>";
+q_help = "<?php echo $user->lang['BBCODE_Q_HELP']; ?>";
+c_help = "<?php echo $user->lang['BBCODE_C_HELP']; ?>";
+l_help = "<?php echo $user->lang['BBCODE_L_HELP']; ?>";
+o_help = "<?php echo $user->lang['BBCODE_O_HELP']; ?>";
+p_help = "<?php echo $user->lang['BBCODE_P_HELP']; ?>";
+w_help = "<?php echo $user->lang['BBCODE_W_HELP']; ?>";
+a_help = "<?php echo $user->lang['BBCODE_A_HELP']; ?>";
+s_help = "<?php echo $user->lang['BBCODE_S_HELP']; ?>";
+f_help = "<?php echo $user->lang['BBCODE_F_HELP']; ?>";
+e_help = "<?php echo $user->lang['BBCODE_E_HELP']; ?>";
+
+//-->
+</script>
+<script language="javascript" type="text/javascript" src="editor.js"></script>
+
<h1><?php echo $user->lang['USER_ADMIN']; ?></h1>
<p><?php echo $user->lang['USER_ADMIN_EXPLAIN']; ?></p>
-<form method="post" action="<?php echo "admin_users.$phpEx$SID&amp;mode=$mode&amp;action=$action&amp;u=$user_id"; ?>"<?php echo ($can_upload) ? ' enctype="multipart/form-data"' : ''; ?>><table width="100%" cellspacing="2" cellpadding="0" border="0" align="center">
+<form method="post" name="admin" action="<?php echo "admin_users.$phpEx$SID&amp;mode=$mode&amp;action=$action&amp;u=$user_id"; ?>"<?php echo ($file_uploads) ? ' enctype="multipart/form-data"' : ''; ?>><table width="100%" cellspacing="2" cellpadding="0" border="0" align="center">
<tr>
<td align="right"><?php echo $user->lang['SELECT_FORM']; ?>: <select name="action" onchange="if (this.options[this.selectedIndex].value != '') this.form.submit();"><?php echo $form_options; ?></select></td>
</tr>
@@ -830,67 +983,84 @@ if ($username || $user_id)
break;
-
-
-
-
-
case 'feedback':
- if ($submit)
- {
-
- }
+ $st = request_var('st', 0);
+ $sk = request_var('sk', 't');
+ $sd = request_var('sd', 'd');
-?>
+ $limit_days = array(0 => $user->lang['ALL_ENTRIES'], 1 => $user->lang['1_DAY'], 7 => $user->lang['7_DAYS'], 14 => $user->lang['2_WEEKS'], 30 => $user->lang['1_MONTH'], 90 => $user->lang['3_MONTHS'], 180 => $user->lang['6_MONTHS'], 364 => $user->lang['1_YEAR']);
+ $sort_by_text = array('u' => $user->lang['SORT_USERNAME'], 't' => $user->lang['SORT_DATE'], 'i' => $user->lang['SORT_IP'], 'o' => $user->lang['SORT_ACTION']);
+ $sort_by_sql = array('u' => 'l.user_id', 't' => 'l.log_time', 'i' => 'l.log_ip', 'o' => 'l.log_operation');
+ $s_limit_days = $s_sort_key = $s_sort_dir = '';
+ gen_sort_selects($limit_days, $sort_by_text, $st, $sk, $sd, $s_limit_days, $s_sort_key, $s_sort_dir);
+ // Define where and sort sql for use in displaying logs
+ $sql_where = ($st) ? (time() - ($st * 86400)) : 0;
+ $sql_sort = $sort_by_sql[$sk] . ' ' . (($sd == 'd') ? 'DESC' : 'ASC');
-<?php
+ $log_data = array();
+ $log_count = 0;
+ view_log('user', $log_data, $log_count, $config['posts_per_page'], $start, 0, 0, $user_id, $sql_where, $sql_sort);
- $sql = 'SELECT COUNT(user_id) AS total_reports
- FROM ' . USERS_NOTES_TABLE . "
- WHERE user_id = $user_id";
- $result = $db->sql_query($sql);
- $row = $db->sql_fetchrow($result);
- $db->sql_freeresult($result);
-
- $total_reports = $row['total_reports'];
+ $pagination = generate_pagination("admin_users.$phpEx$SID&amp;action=$action&amp;u=$user_id&amp;st=$st&amp;sk=$sk&amp;sd=$sd", $total_reports, $config['posts_per_page'], $start);
- if ($total_reports)
+ if ($log_count)
{
- $pagination = generate_pagination("admin_users.$phpEx$SID&amp;action=$action&amp;u=$user_id&amp;st=$sort_days&amp;sk=$sort_key&amp;sd=$sort_dir", $total_reports, $config['posts_per_page'], $start);
-
- $sql = 'SELECT u.username, n.*
- FROM ' . USERS_NOTES_TABLE . ' n, ' . USERS_TABLE . " u
- WHERE n.user_id = $user_id
- AND u.user_id = n.reporter_id
- ORDER BY n.report_log DESC, n.report_date DESC";
- $result = $db->sql_query($sql);
-
- while ($row = $db->sql_fetchrow($result))
+ for($i = 0; $i < sizeof($log_data); $i++)
{
$row_class = ($row_class == 'row1') ? 'row2' : 'row1';
?>
<tr>
- <td class="<?php echo $row_class; ?>"><span class="gensmall">Report by: <b><?php echo $row['username']; ?></b> on <?php echo $user->format_date($row['report_date']); ?></span><hr /><?php echo $row['report_text']; ?></td>
+ <td class="<?php echo $row_class; ?>"><span class="gensmall">Report by: <b><?php echo $log_data[$i]['username']; ?></b> on <?php echo $user->format_date($log_data[$i]['time']); ?></span><hr /><?php echo $log_data[$i]['action']; ?></td>
+ <td class="<?php echo $row_class; ?>" width="5%" align="center"><input type="checkbox" name="mark[]" value="<?php echo $log_data[$i]['id']; ?>" /></td>
</tr>
<?php
}
- $db->sql_freeresult($result);
}
else
{
?>
<tr>
- <td class="row1" align="center">No reports exist for this user</td>
+ <td class="row1" colspan="2" align="center">No reports exist for this user</td>
</tr>
<?php
}
+
+
+?>
+ <tr>
+ <td class="cat" colspan="2" align="center"><?php echo $user->lang['DISPLAY_LOG']; ?>: &nbsp;<?php echo $s_limit_days; ?>&nbsp;<?php echo $user->lang['SORT_BY']; ?>: <?php echo $s_sort_key; ?> <?php echo $s_sort_dir; ?>&nbsp;<input class="btnlite" type="submit" value="<?php echo $user->lang['GO']; ?>" name="sort" /></td>
+ </tr>
+ </table></td>
+ </tr>
+ <tr>
+ <td></td>
+ <td align="right"></td>
+ </tr>
+</table>
+
+<h1><?php echo $user->lang['ADD_FEEDBACK']; ?></h1>
+
+<p><?php echo $user->lang['ADD_FEEDBACK_EXPLAIN']; ?></p>
+
+<table width="100%" cellspacing="2" cellpadding="0" border="0" align="center">
+ <tr>
+ <td><table class="bg" width="100%" cellspacing="1" cellpadding="4" border="0">
+ <tr>
+ <th colspan="2"><?php echo $user->lang['USER_ADMIN_' . strtoupper($action)]; ?></th>
+ </tr>
+ <tr>
+ <td class="row1" colspan="2" align="center"><textarea name="message" rows="10" cols="76"></textarea></td>
+ </tr>
+<?php
+
+
break;
@@ -1033,12 +1203,10 @@ if ($username || $user_id)
<td class="row1"><b><?php echo $user->lang['VIEW_AVATARS']; ?>:</b></td>
<td class="row2"><input type="radio" name="viewavatars" value="1"<?php echo $viewavatars_yes; ?> /><span class="gen"><?php echo $user->lang['YES']; ?></span>&nbsp;&nbsp;<input type="radio" name="viewavatars" value="0"<?php echo $viewavatars_no; ?> /><span class="gen"><?php echo $user->lang['NO']; ?></span></td>
</tr>
- <!-- IF S_CHANGE_CENSORS -->
<tr>
<td class="row1"><b><?php echo $user->lang['DISABLE_CENSORS']; ?>:</b></td>
<td class="row2"><input type="radio" name="viewcensors" value="1"<?php echo $viewcensors_yes; ?> /><span class="gen"><?php echo $user->lang['YES']; ?></span>&nbsp;&nbsp;<input type="radio" name="viewcensors" value="0"<?php echo $viewcensors_no; ?> /><span class="gen"><?php echo $user->lang['NO']; ?></span></td>
</tr>
- <!-- ENDIF -->
<!-- tr>
<td class="row1"><b><?php echo $user->lang['MINIMUM_KARMA']; ?>:</b><br /><span class="gensmall"><?php echo $user->lang['MINIMUM_KARMA_EXPLAIN']; ?></span></td>
<td class="row2"><select name="user_min_karma">{S_MIN_KARMA_OPTIONS}</select></td>
@@ -1093,18 +1261,14 @@ if ($username || $user_id)
<td class="row1"><b><?php echo $user->lang['ALLOW_PM']; ?>:</b><br /><span class="gensmall"><?php echo $user->lang['ALLOW_PM_EXPLAIN']; ?></span></td>
<td class="row2"><input type="radio" name="user_allow_pm" value="1"<?php echo $user_allow_pm_yes; ?> /><span class="genmed"><?php echo $user->lang['YES']; ?></span>&nbsp;&nbsp;<input type="radio" name="user_allow_pm" value="0"<?php echo $user_allow_pm_no; ?> /><span class="genmed"><?php echo $user->lang['NO']; ?></span></td>
</tr>
- <!-- IF S_CAN_HIDE_ONLINE -->
<tr>
<td class="row1"><b><?php echo $user->lang['HIDE_ONLINE']; ?>:</b></td>
<td class="row2"><input type="radio" name="user_allow_viewonline" value="0"<?php echo $user_allow_viewonline_no; ?> /><span class="genmed"><?php echo $user->lang['YES']; ?></span>&nbsp;&nbsp;<input type="radio" name="user_allow_viewonline" value="1"<?php echo $user_allow_viewonline_yes; ?> /><span class="genmed"><?php echo $user->lang['NO']; ?></span></td>
</tr>
- <!-- ENDIF -->
- <!-- IF S_SELECT_NOTIFY -->
<tr>
<td class="row1"><b><?php echo $user->lang['NOTIFY_METHOD']; ?>:</b><br /><span class="gensmall"><?php echo $user->lang['NOTIFY_METHOD_EXPLAIN']; ?></span></td>
<td class="row2"><input type="radio" name="user_notify_type" value="0"<?php echo $notify_email; ?> /><span class="genmed"><?php echo $user->lang['NOTIFY_METHOD_EMAIL']; ?></span>&nbsp;&nbsp;<input type="radio" name="user_notify_type" value="1"<?php echo $notify_im; ?> /><span class="genmed"><?php echo $user->lang['NOTIFY_METHOD_IM']; ?></span>&nbsp;&nbsp;<input type="radio" name="user_notify_type" value="2"<?php echo $notify_both; ?> /><span class="genmed"><?php echo $user->lang['NOTIFY_METHOD_BOTH']; ?></span></td>
</tr>
- <!-- ENDIF -->
<tr>
<td class="row1"><b><?php echo $user->lang['NOTIFY_ON_PM']; ?>:</b></td>
<td class="row2"><input type="radio" name="user_notify_pm" value="1"<?php echo $user_notify_pm_yes; ?> /><span class="genmed"><?php echo $user->lang['YES']; ?></span>&nbsp;&nbsp;<input type="radio" name="user_notify_pm" value="0"<?php echo $user_notify_pm_no; ?> /><span class="genmed"><?php echo $user->lang['NO']; ?></span></td>
@@ -1141,6 +1305,11 @@ if ($username || $user_id)
case 'avatar':
$can_upload = ($file_uploads && file_exists($phpbb_root_path . $config['avatar_path']) && is_writeable($phpbb_root_path . $config['avatar_path'])) ? true : false;
+ $display_gallery = (isset($_POST['displaygallery'])) ? true : false;
+ $avatar_category = request_var('category', '');
+
+ // Generate users avatar
+ $avatar_img = '';
if ($user_avatar)
{
switch ($user_avatar_type)
@@ -1247,11 +1416,46 @@ if ($username || $user_id)
case 'sig':
include($phpbb_root_path . 'includes/functions_posting.'.$phpEx);
+ $signature_preview = '';
+ if ($preview)
+ {
+ $signature_preview = $signature;
+
+ // Fudge-o-rama ...
+ include($phpbb_root_path . 'includes/message_parser.'.$phpEx);
+
+ $message_parser = new parse_message();
+ $message_parser->message = $signature_preview;
+ $message_parser->parse($enable_html, $enable_bbcode, $enable_urls, $enable_smilies);
+ $signature_preview = $message_parser->message;
+
+ if ($enable_bbcode)
+ {
+ include($phpbb_root_path . 'includes/bbcode.'.$phpEx);
+ $bbcode = new bbcode($message_parser->bbcode_bitfield);
+
+ $bbcode->bbcode_second_pass($signature_preview, $message_parser->bbcode_uid);
+ }
+
+ // If we allow users to disable display of emoticons
+ // we'll need an appropriate check and preg_replace here
+ $signature_preview = (empty($enable_smilies) || empty($config['allow_smilies'])) ? preg_replace('#<!\-\- s(.*?) \-\-><img src="\{SMILE_PATH\}\/.*? \/><!\-\- s\1 \-\->#', '\1', $signature_preview) : str_replace('<img src="{SMILE_PATH}', '<img src="' . $phpbb_root_path . $config['smilies_path'], $signature_preview);
+
+ // Replace naughty words such as farty pants
+ if (sizeof($censors))
+ {
+ $signature_preview = str_replace('\"', '"', substr(preg_replace('#(\>(((?>([^><]+|(?R)))*)\<))#se', "preg_replace(\$censors['match'], \$censors['replace'], '\\0')", '>' . $signature_preview . '<'), 1, -1));
+ }
+
+ $signature_preview = str_replace("\n", '<br />', $signature_preview);
+ }
+
decode_text($user_sig, $user_sig_bbcode_uid);
?>
<tr>
+ <td class="row1" width="40%"><b class="genmed"><?php echo $user->lang['SIGNATURE']; ?>: </b></td>
<td class="row2"><table cellspacing="0" cellpadding="2" border="0">
<tr align="center" valign="middle">
<td><input class="btnlite" type="button" accesskey="b" name="addbbcode0" value=" B " style="font-weight:bold; width: 30px" onclick="bbstyle(0)" onmouseover="helpline('b')" /></td>
@@ -1267,27 +1471,119 @@ if ($username || $user_id)
<tr>
<td colspan="9"><table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
- <td><span class="genmed"> &nbsp;{L_FONT_SIZE}:</span> <select name="addbbcode20" onchange="bbfontstyle('[size=' + this.form.addbbcode20.options[this.form.addbbcode20.selectedIndex].value + ']', '[/size]');this.form.addbbcode20.selectedIndex = 2;" onmouseover="helpline('f')">
- <option value="7">{L_FONT_TINY}</option>
- <option value="9">{L_FONT_SMALL}</option>
- <option value="12" selected="selected">{L_FONT_NORMAL}</option>
- <option value="18">{L_FONT_LARGE}</option>
- <option value="24">{L_FONT_HUGE}</option>
+ <td><span class="genmed"> &nbsp;<?php echo $user->lang['FONT_SIZE']; ?>:</span> <select name="addbbcode20" onchange="bbfontstyle('[size=' + this.form.addbbcode20.options[this.form.addbbcode20.selectedIndex].value + ']', '[/size]');this.form.addbbcode20.selectedIndex = 2;" onmouseover="helpline('f')">
+ <option value="7"><?php echo $user->lang['FONT_TINY']; ?></option>
+ <option value="9"><?php echo $user->lang['FONT_SMALL']; ?></option>
+ <option value="12" selected="selected"><?php echo $user->lang['FONT_NORMAL']; ?></option>
+ <option value="18"><?php echo $user->lang['FONT_LARGE']; ?></option>
+ <option value="24"><?php echo $user->lang['FONT_HUGE']; ?></option>
</select></td>
- <td class="gensmall" nowrap="nowrap" align="right"><a href="javascript:bbstyle(-1)" onmouseover="helpline('a')">{L_CLOSE_TAGS}</a></td>
+ <td class="gensmall" nowrap="nowrap" align="right"><a href="javascript:bbstyle(-1)" onmouseover="helpline('a')"><?php echo $user->lang['CLOSE_TAGS']; ?></a></td>
+ </tr>
+ </table></td>
+ </tr>
+ <tr>
+ <td colspan="9"><input class="helpline" type="text" name="helpbox" size="45" maxlength="100" value="<?php echo $user->lang['STYLES_TIP']; ?>" /></td>
+ </tr>
+ <tr>
+ <td colspan="9"><textarea name="signature" rows="6" cols="60" tabindex="3" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);"><?php echo $user_sig; ?></textarea></td>
+ </tr>
+ <tr>
+ <td colspan="9"><table cellspacing="0" cellpadding="0" border="0">
+ <tr>
+ <td bgcolor="black"><script language="javascript" type="text/javascript"><!--
+
+ colorPalette('h', 14, 5)
+
+ //--></script></td>
</tr>
</table></td>
</tr>
+ </table></td>
+ </tr>
+ <tr>
+ <td class="row1" valign="top"><b class="genmed"><?php echo $user->lang['OPTIONS']; ?></b><br /><table cellspacing="2" cellpadding="0" border="0">
+ <tr>
+ <td class="gensmall"><?php echo ($config['allow_html']) ? $user->lang['HTML_IS_ON'] : $user->lang['HTML_IS_OFF']; ?></td>
+ </tr>
+ <tr>
+ <td class="gensmall"><?php echo ($config['allow_bbcode']) ? sprintf($user->lang['BBCODE_IS_ON'], "<a href=\"../faq.$phpEx$SID&amp;mode=bbcode\" target=\"_blank\">", '</a>') : sprintf($user->lang['BBCODE_IS_OFF'], "<a href=\"../faq.$phpEx$SID&amp;mode=bbcode\" target=\"_blank\">", '</a>'); ?></td>
+ </tr>
<tr>
- <td colspan="9"><input class="helpline" type="text" name="helpbox" size="45" maxlength="100" value="{L_STYLES_TIP}" /></td>
+ <td class="gensmall"><?php echo ($config['allow_img']) ? $user->lang['IMAGES_ARE_ON'] : $user->lang['IMAGES_ARE_OFF']; ?></td>
</tr>
<tr>
- <td colspan="9"><textarea class="post" name="signature" rows="6" cols="60" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);"><?php echo $user_sig; ?></textarea></td>
+ <td class="gensmall"><?php echo ($config['allow_flash']) ? $user->lang['FLASH_IS_ON'] : $user->lang['FLASH_IS_OFF']; ?></td>
+ </tr>
+ <tr>
+ <td class="gensmall"><?php echo ($config['allow_smilies']) ? $user->lang['SMILIES_ARE_ON'] : $user->lang['SMILIES_ARE_OFF']; ?></td>
</tr>
</table></td>
+ <td class="row2" valign="top"><table cellspacing="0" cellpadding="1" border="0">
+<?php
+
+ if ($config['allow_html'])
+ {
+
+?>
+ <tr>
+ <td><input type="checkbox" name="disable_html" /></td>
+ <td class="gen"><?php echo $user->lang['DISABLE_HTML']; ?></td>
+ </tr>
+<?php
+
+ }
+
+ if ($config['allow_bbcode'])
+ {
+
+?>
+ <tr>
+ <td><input type="checkbox" name="disable_bbcode" /></td>
+ <td class="gen"><?php echo $user->lang['DISABLE_BBCODE']; ?></td>
+ </tr>
+<?php
+
+ }
+
+ if ($config['allow_smilies'])
+ {
+
+?>
+ <tr>
+ <td><input type="checkbox" name="disable_smilies" /></td>
+ <td class="gen"><?php echo $user->lang['DISABLE_SMILIES']; ?></td>
+ </tr>
+<?php
+
+ }
+
+?>
+ <tr>
+ <td><input type="checkbox" name="disable_magic_url" /></td>
+ <td class="gen"><?php echo $user->lang['DISABLE_MAGIC_URL']; ?></td>
+ </tr>
+ </table></td>
+ </tr>
+<?php
+
+ if ($signature_preview)
+ {
+
+?>
+ <tr>
+ <th colspan="2" valign="middle"><?php echo $user->lang['ADMIN_SIGNATURE_PREVIEW']; ?></th>
+ </tr>
+ <tr>
+ <td class="row1" colspan="2"><div class="postdetails" style="padding: 6px;"><?php echo $signature_preview; ?></div></td>
</tr>
<?php
+ }
+
+?>
+<?php
+
break;
@@ -1302,7 +1598,7 @@ if ($username || $user_id)
?>
<tr>
- <td class="cat" colspan="2" align="center"><input class="btnmain" type="submit" name="update" value="<?php echo $user->lang['SUBMIT']; ?>" />&nbsp;&nbsp;<input class="btnlite" type="reset" value="<?php echo $user->lang['RESET']; ?>" /></td>
+ <td class="cat" colspan="2" align="center"><?php echo ($action == 'sig') ? '<input class="btnlite" type="submit" name="preview" value="' . $user->lang['PREVIEW'] . '" />&nbsp;&nbsp;' : ''; ?><input class="btnmain" type="submit" name="update" value="<?php echo $user->lang['SUBMIT']; ?>" />&nbsp;&nbsp;<input class="btnlite" type="reset" value="<?php echo $user->lang['RESET']; ?>" /></td>
</tr>
</table></td>
</tr>
diff --git a/phpBB/adm/admin_viewlogs.php b/phpBB/adm/admin_viewlogs.php
index e42bee398a..ece903bb5b 100644
--- a/phpBB/adm/admin_viewlogs.php
+++ b/phpBB/adm/admin_viewlogs.php
@@ -140,7 +140,7 @@ if ($mode == 'mod')
//
$log_data = array();
$log_count = 0;
-view_log($mode, $log_data, $log_count, $config['topics_per_page'], $start, $forum_id, 0, $sql_where, $sql_sort);
+view_log($mode, $log_data, $log_count, $config['topics_per_page'], $start, $forum_id, 0, 0, $sql_where, $sql_sort);
if ($log_count)
{
diff --git a/phpBB/adm/editor.js b/phpBB/adm/editor.js
new file mode 100644
index 0000000000..a54a31db38
--- /dev/null
+++ b/phpBB/adm/editor.js
@@ -0,0 +1,306 @@
+// bbCode control by subBlue design [ www.subBlue.com ]
+// Includes unixsafe colour palette selector by SHS`
+
+// Startup variables
+var imageTag = false;
+var theSelection = false;
+
+// Check for Browser & Platform for PC & IE specific bits
+// More details from: http://www.mozilla.org/docs/web-developer/sniffer/browser_type.html
+var clientPC = navigator.userAgent.toLowerCase(); // Get client info
+var clientVer = parseInt(navigator.appVersion); // Get browser version
+
+var is_ie = ((clientPC.indexOf("msie") != -1) && (clientPC.indexOf("opera") == -1));
+var is_nav = ((clientPC.indexOf('mozilla')!=-1) && (clientPC.indexOf('spoofer')==-1)
+ && (clientPC.indexOf('compatible') == -1) && (clientPC.indexOf('opera')==-1)
+ && (clientPC.indexOf('webtv')==-1) && (clientPC.indexOf('hotjava')==-1));
+
+var is_win = ((clientPC.indexOf("win")!=-1) || (clientPC.indexOf("16bit") != -1));
+var is_mac = (clientPC.indexOf("mac")!=-1);
+
+// Shows the help messages in the helpline window
+function helpline(help) {
+ document.forms[form_name].helpbox.value = eval(help + "_help");
+}
+
+// Replacement for arrayname.length property
+function getarraysize(thearray) {
+ for (i = 0; i < thearray.length; i++) {
+ if ((thearray[i] == "undefined") || (thearray[i] == "") || (thearray[i] == null))
+ return i;
+ }
+ return thearray.length;
+}
+
+// Replacement for arrayname.push(value) not implemented in IE until version 5.5
+// Appends element to the array
+function arraypush(thearray,value) {
+ thearray[ getarraysize(thearray) ] = value;
+}
+
+// Replacement for arrayname.pop() not implemented in IE until version 5.5
+// Removes and returns the last element of an array
+function arraypop(thearray) {
+ thearraysize = getarraysize(thearray);
+ retval = thearray[thearraysize - 1];
+ delete thearray[thearraysize - 1];
+ return retval;
+}
+
+function emoticon(text) {
+ text = ' ' + text + ' ';
+ if (document.forms[form_name].elements[text_name].createTextRange && document.forms[form_name].elements[text_name].caretPos) {
+ var caretPos = document.forms[form_name].elements[text_name].caretPos;
+
+ caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? caretPos.text + text + ' ' : caretPos.text + text;
+ document.forms[form_name].elements[text_name].focus();
+ } else {
+ var selStart = document.forms[form_name].elements[text_name].selectionStart;
+ var selEnd = document.forms[form_name].elements[text_name].selectionEnd;
+
+ mozWrap(document.forms[form_name].elements[text_name], text, '')
+ document.forms[form_name].elements[text_name].focus();
+ document.forms[form_name].elements[text_name].selectionStart = selStart + text.length;
+ document.forms[form_name].elements[text_name].selectionEnd = selEnd + text.length;
+ }
+}
+
+function bbfontstyle(bbopen, bbclose) {
+ if ((clientVer >= 4) && is_ie && is_win) {
+ theSelection = document.selection.createRange().text;
+ if (!theSelection) {
+ insert_text(bbopen + bbclose);
+ document.forms[form_name].elements[text_name].focus();
+ return;
+ }
+ document.selection.createRange().text = bbopen + theSelection + bbclose;
+ document.forms[form_name].elements[text_name].focus();
+ return;
+ } else {
+ insert_text(bbopen + bbclose);
+ document.forms[form_name].elements[text_name].focus();
+ return;
+ }
+ storeCaret(document.forms[form_name].elements[text_name]);
+}
+
+function insert_text(text) {
+ if (document.forms[form_name].elements[text_name].createTextRange && document.forms[form_name].elements[text_name].caretPos) {
+ var caretPos = document.forms[form_name].elements[text_name].caretPos;
+ caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? caretPos.text + text + ' ' : caretPos.text + text;
+ } else {
+ var selStart = document.forms[form_name].elements[text_name].selectionStart;
+ var selEnd = document.forms[form_name].elements[text_name].selectionEnd;
+
+ mozWrap(document.forms[form_name].elements[text_name], text, '')
+ document.forms[form_name].elements[text_name].selectionStart = selStart + text.length;
+ document.forms[form_name].elements[text_name].selectionEnd = selEnd + text.length;
+ }
+}
+
+function attach_inline() {
+ insert_text('[attachment=' + document.forms[form_name].elements['attachments'].value + ']' + document.forms[form_name].elements['attachments'].options[document.forms[form_name].elements['attachments'].selectedIndex].text + '[/attachment]');
+}
+
+function bbstyle(bbnumber) {
+
+ donotinsert = false;
+ theSelection = false;
+ bblast = 0;
+ document.forms[form_name].elements[text_name].focus();
+
+ if (bbnumber == -1) { // Close all open tags & default button names
+ while (bbcode[0]) {
+ butnumber = arraypop(bbcode) - 1;
+ document.forms[form_name].elements[text_name].value += bbtags[butnumber + 1];
+ buttext = eval('document.forms[form_name].addbbcode' + butnumber + '.value');
+ if (buttext != "[*]")
+ {
+ eval('document.forms[form_name].addbbcode' + butnumber + '.value ="' + buttext.substr(0,(buttext.length - 1)) + '"');
+ }
+ }
+ document.forms[form_name].addbbcode10.value = "List";
+ bbtags[10] = "[list]";
+ document.forms[form_name].addbbcode12.value = "List=";
+ bbtags[12] = "[list=]";
+ imageTag = false; // All tags are closed including image tags :D
+ document.forms[form_name].elements[text_name].focus();
+ return;
+ }
+
+ if ((clientVer >= 4) && is_ie && is_win)
+ {
+ theSelection = document.selection.createRange().text; // Get text selection
+ if (theSelection) {
+ // Add tags around selection
+ document.selection.createRange().text = bbtags[bbnumber] + theSelection + bbtags[bbnumber+1];
+ document.forms[form_name].elements[text_name].focus();
+ theSelection = '';
+ return;
+ }
+ }
+ else if (document.forms[form_name].elements[text_name].selectionEnd && (document.forms[form_name].elements[text_name].selectionEnd - document.forms[form_name].elements[text_name].selectionStart > 0))
+ {
+ mozWrap(document.forms[form_name].elements[text_name], bbtags[bbnumber], bbtags[bbnumber+1]);
+ document.forms[form_name].elements[text_name].focus();
+ theSelection = '';
+ return;
+ }
+
+ // Find last occurance of an open tag the same as the one just clicked
+ for (i = 0; i < bbcode.length; i++) {
+ if (bbcode[i] == bbnumber+1) {
+ bblast = i;
+ donotinsert = true;
+ }
+ }
+
+ if ((bbnumber == 10) && (bbtags[10] != "[*]"))
+ {
+ if (donotinsert)
+ {
+ document.forms[form_name].addbbcode12.value = "List=";
+ tmp_help = o_help;
+ o_help = e_help;
+ e_help = tmp_help;
+ bbtags[12] = "[list=]";
+ }
+ else
+ {
+ document.forms[form_name].addbbcode12.value = "[*]";
+ tmp_help = o_help;
+ o_help = e_help;
+ e_help = tmp_help;
+ bbtags[12] = "[*]";
+ }
+ }
+
+ if ((bbnumber == 12) && (bbtags[12] != "[*]"))
+ {
+ if (donotinsert)
+ {
+ document.forms[form_name].addbbcode10.value = "List";
+ tmp_help = l_help;
+ l_help = e_help;
+ e_help = tmp_help;
+ bbtags[10] = "[list]";
+ }
+ else
+ {
+ document.forms[form_name].addbbcode10.value = "[*]";
+ tmp_help = l_help;
+ l_help = e_help;
+ e_help = tmp_help;
+ bbtags[10] = "[*]";
+ }
+ }
+
+ if (donotinsert) { // Close all open tags up to the one just clicked & default button names
+ while (bbcode[bblast]) {
+ butnumber = arraypop(bbcode) - 1;
+ if (bbtags[butnumber] != "[*]")
+ {
+ insert_text(bbtags[butnumber + 1]);
+ }
+ else
+ {
+ insert_text(bbtags[butnumber]);
+ }
+ buttext = eval('document.forms[form_name].addbbcode' + butnumber + '.value');
+ if (bbtags[butnumber] != "[*]")
+ {
+ eval('document.forms[form_name].addbbcode' + butnumber + '.value ="' + buttext.substr(0,(buttext.length - 1)) + '"');
+ }
+ imageTag = false;
+ }
+ document.forms[form_name].elements[text_name].focus();
+ return;
+ } else { // Open tags
+
+ if (imageTag && (bbnumber != 14)) { // Close image tag before adding another
+ insert_text(bbtags[15]);
+
+ lastValue = arraypop(bbcode) - 1; // Remove the close image tag from the list
+ document.forms[form_name].addbbcode14.value = "Img"; // Return button back to normal state
+ imageTag = false;
+ }
+
+ // Open tag
+ insert_text(bbtags[bbnumber]);
+
+ if ((bbnumber == 14) && (imageTag == false)) imageTag = 1; // Check to stop additional tags after an unclosed image tag
+ if (bbtags[bbnumber] != "[*]")
+ {
+ arraypush(bbcode,bbnumber+1);
+ eval('document.forms[form_name].addbbcode'+bbnumber+'.value += "*"');
+ }
+ document.forms[form_name].elements[text_name].focus();
+ return;
+ }
+
+ storeCaret(document.forms[form_name].elements[text_name]);
+}
+
+// From http://www.massless.org/mozedit/
+function mozWrap(txtarea, open, close)
+{
+ var selLength = txtarea.textLength;
+ var selStart = txtarea.selectionStart;
+ var selEnd = txtarea.selectionEnd;
+ if (selEnd == 1 || selEnd == 2)
+ selEnd = selLength;
+
+ var s1 = (txtarea.value).substring(0,selStart);
+ var s2 = (txtarea.value).substring(selStart, selEnd)
+ var s3 = (txtarea.value).substring(selEnd, selLength);
+ txtarea.value = s1 + open + s2 + close + s3;
+ return;
+}
+
+// Insert at Claret position. Code from
+// http://www.faqts.com/knowledge_base/view.phtml/aid/1052/fid/130
+function storeCaret(textEl) {
+ if (textEl.createTextRange) { textEl.caretPos = document.selection.createRange().duplicate(); }
+}
+
+function colorPalette(dir, width, height)
+{
+ var r = 0, g = 0, b = 0;
+ var numberList = new Array(6);
+ numberList[0] = "00";
+ numberList[1] = "40";
+ numberList[2] = "80";
+ numberList[3] = "BF";
+ numberList[4] = "FF";
+ document.writeln('<table cellspacing="1" cellpadding="0" border="0">');
+ for(r = 0; r < 5; r++)
+ {
+ if (dir == 'h')
+ {
+ document.writeln('<tr>');
+ }
+ for(g = 0; g < 5; g++)
+ {
+ if (dir == 'v')
+ {
+ document.writeln('<tr>');
+ }
+ for(b = 0; b < 5; b++)
+ {
+ color = String(numberList[r]) + String(numberList[g]) + String(numberList[b]);
+ document.write('<td bgcolor="#' + color + '">');
+ document.write('<a href="javascript:bbfontstyle(\'[color=#' + color + ']\', \'[/color]\');" onmouseover="helpline(\'s\');"><img src="images/spacer.gif" width="' + width + '" height="' + height + '" border="0" alt="#' + color + '" title="#' + color + '" /></a>');
+ document.writeln('</td>');
+ }
+ if (dir == 'v')
+ {
+ document.writeln('</tr>');
+ }
+ }
+ if (dir == 'h')
+ {
+ document.writeln('</tr>');
+ }
+ }
+ document.writeln('</table>');
+} \ No newline at end of file
diff --git a/phpBB/adm/subSilver.css b/phpBB/adm/subSilver.css
index e5e1964ac2..451a1eb139 100644
--- a/phpBB/adm/subSilver.css
+++ b/phpBB/adm/subSilver.css
@@ -220,3 +220,5 @@ textarea.edit {
font-weight: normal;
border-width: 1px;
}
+
+.helpline { background-color: #DEE3E7; border-style: none; }
diff --git a/phpBB/common.php b/phpBB/common.php
index 754183b025..ffac022403 100644
--- a/phpBB/common.php
+++ b/phpBB/common.php
@@ -125,6 +125,7 @@ define('MAIL_HIGH_PRIORITY', 2);
define('LOG_ADMIN', 0);
define('LOG_MOD', 1);
define('LOG_CRITICAL', 2);
+define('LOG_USERS', 3);
// Private messaging
define('PRIVMSGS_READ_MAIL', 0);