aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/config.php51
-rw-r--r--phpBB/faq.php1
-rw-r--r--phpBB/groupcp.php1
-rw-r--r--phpBB/index.php1
-rw-r--r--phpBB/install.php2
-rw-r--r--phpBB/login.php1
-rw-r--r--phpBB/memberlist.php1
-rw-r--r--phpBB/modcp.php4
-rw-r--r--phpBB/posting.php459
-rw-r--r--phpBB/privmsg.php3
-rw-r--r--phpBB/profile.php1960
-rw-r--r--phpBB/search.php3
-rw-r--r--phpBB/upgrade.php4
-rw-r--r--phpBB/viewforum.php1
-rw-r--r--phpBB/viewonline.php1
-rw-r--r--phpBB/viewtopic.php1
16 files changed, 334 insertions, 2160 deletions
diff --git a/phpBB/config.php b/phpBB/config.php
index e69de29bb2..a8a5221ab3 100644
--- a/phpBB/config.php
+++ b/phpBB/config.php
@@ -0,0 +1,51 @@
+<?php
+
+//
+// phpBB 2.x auto-generated config file
+// Do not change anything in this file!
+//
+
+$dbms = "mysql4";
+$dbhost = "localhost";
+$dbname = "dev_starstreak_net";
+$dbuser = "devhttp";
+$dbpasswd = "efx2KarizonaD";
+
+$dbhost = "localhost";
+$dbname = "phpbb_com";
+$dbuser = "devhttp";
+$dbpasswd = "efx2KarizonaD";
+
+/*
+$dbhost = "localhost";
+$dbname = "phpbb_test";
+$dbuser = "devhttp";
+$dbpasswd = "efx2KarizonaD";
+
+$dbms = "mssql-odbc";
+
+$dbhost = "mssql_phpbb_odbc";
+$dbname = "";
+$dbuser = "phpbb";
+$dbpasswd = "efx2000";
+
+$dbms = "msaccess";
+
+$dbhost = "phpbb_test_msaccess_odbc";
+$dbname = "";
+$dbuser = "devhttp";
+$dbpasswd = "efx2KarizonaD";
+
+$dbms = "mssql";
+
+$dbhost = "localhost";
+$dbname = "phpbb";
+$dbuser = "phpbb";
+$dbpasswd = "efx2000";
+*/
+
+$table_prefix = "phpbb_";
+
+define('PHPBB_INSTALLED', true);
+
+?> \ No newline at end of file
diff --git a/phpBB/faq.php b/phpBB/faq.php
index 6360521cbe..ea741799e9 100644
--- a/phpBB/faq.php
+++ b/phpBB/faq.php
@@ -20,6 +20,7 @@
*
***************************************************************************/
+define('IN_PHPBB', true);
$phpbb_root_path = "./";
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
diff --git a/phpBB/groupcp.php b/phpBB/groupcp.php
index 477e6c2f0f..a1c4016044 100644
--- a/phpBB/groupcp.php
+++ b/phpBB/groupcp.php
@@ -20,6 +20,7 @@
*
***************************************************************************/
+define('IN_PHPBB', true);
$phpbb_root_path = "./";
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
diff --git a/phpBB/index.php b/phpBB/index.php
index d89158d013..85123f6a60 100644
--- a/phpBB/index.php
+++ b/phpBB/index.php
@@ -20,6 +20,7 @@
*
***************************************************************************/
+define('IN_PHPBB', true);
$phpbb_root_path = "./";
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
diff --git a/phpBB/install.php b/phpBB/install.php
index 8928830946..e33bc56ae0 100644
--- a/phpBB/install.php
+++ b/phpBB/install.php
@@ -22,8 +22,10 @@
error_reporting (E_ERROR | E_WARNING | E_PARSE); // This will NOT report uninitialized variables
set_magic_quotes_runtime(0); // Disable magic_quotes_runtime
+define('IN_PHPBB', true);
$phpbb_root_path='./';
include($phpbb_root_path.'extension.inc');
+include($phpbb_root_dir . 'includes/functions_selects.'.$phpEx);
$userdata = array();
$lang = array();
diff --git a/phpBB/login.php b/phpBB/login.php
index f480d4aaf2..f0c5e0e94e 100644
--- a/phpBB/login.php
+++ b/phpBB/login.php
@@ -26,6 +26,7 @@
//
define("IN_LOGIN", true);
+define('IN_PHPBB', true);
$phpbb_root_path = "./";
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
diff --git a/phpBB/memberlist.php b/phpBB/memberlist.php
index 47fc126765..c1e5325153 100644
--- a/phpBB/memberlist.php
+++ b/phpBB/memberlist.php
@@ -19,6 +19,7 @@
*
***************************************************************************/
+define('IN_PHPBB', true);
$phpbb_root_path = "./";
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
diff --git a/phpBB/modcp.php b/phpBB/modcp.php
index 5bd9268573..35d23ae424 100644
--- a/phpBB/modcp.php
+++ b/phpBB/modcp.php
@@ -29,11 +29,13 @@
* topics via the moderator operations buttons on all of the viewtopic pages.
*/
+define('IN_PHPBB', true);
$phpbb_root_path = "./";
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
include($phpbb_root_path . 'includes/bbcode.'.$phpEx);
-include($phpbb_root_path . 'includes/search.'.$phpEx);
+include($phpbb_root_path . 'includes/functions_admin.'.$phpEx);
+include($phpbb_root_path . 'includes/functions_search.'.$phpEx);
//
// Obtain initial var settings
diff --git a/phpBB/posting.php b/phpBB/posting.php
index 6545806d6d..291c452845 100644
--- a/phpBB/posting.php
+++ b/phpBB/posting.php
@@ -20,12 +20,12 @@
*
***************************************************************************/
+define('IN_PHPBB', true);
$phpbb_root_path = "./";
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
-include($phpbb_root_path . 'includes/post.'.$phpEx);
include($phpbb_root_path . 'includes/bbcode.'.$phpEx);
-include($phpbb_root_path . 'includes/search.'.$phpEx);
+include($phpbb_root_path . 'includes/functions_post.'.$phpEx);
//
// Check and set various parameters
@@ -40,7 +40,7 @@ while( list($var, $param) = @each($params) )
}
else
{
- $$var = "";
+ $$var = '';
}
}
@@ -55,14 +55,14 @@ $topic_type = ( !empty($HTTP_POST_VARS['topictype']) ) ? $HTTP_POST_VARS['topict
// If the mode is set to topic review then output
// that review ...
//
-if( $mode == "topicreview" )
+if( $mode == 'topicreview' )
{
require($phpbb_root_path . 'includes/topic_review.'.$phpEx);
topic_review($topic_id, false);
exit;
}
-else if( $mode == "smilies" )
+else if( $mode == 'smilies' )
{
generate_smilies("window", PAGE_POSTING);
exit;
@@ -95,7 +95,7 @@ if( isset($HTTP_POST_VARS['cancel']) )
$post_append = "";
}
- header("Location: " . append_sid($redirect) . $post_append, true);
+ header('Location: ' . append_sid($redirect) . $post_append, true);
}
//
@@ -116,33 +116,33 @@ switch( $mode )
case 'newtopic':
if( $topic_type == POST_ANNOUNCE )
{
- $is_auth_type = "auth_announce";
+ $is_auth_type = 'auth_announce';
}
else if( $topic_type == POST_STICKY )
{
- $is_auth_type = "auth_sticky";
+ $is_auth_type = 'auth_sticky';
}
else
{
- $is_auth_type = "auth_post";
+ $is_auth_type = 'auth_post';
}
break;
case 'reply':
case 'quote':
- $is_auth_type = "auth_reply";
+ $is_auth_type = 'auth_reply';
break;
case 'editpost':
- $is_auth_type = "auth_edit";
+ $is_auth_type = 'auth_edit';
break;
case 'delete':
case 'poll_delete':
- $is_auth_type = "auth_delete";
+ $is_auth_type = 'auth_delete';
break;
case 'vote':
- $is_auth_type = "auth_vote";
+ $is_auth_type = 'auth_vote';
break;
case 'topicreview':
- $is_auth_type = "auth_read";
+ $is_auth_type = 'auth_read';
break;
default:
message_die(GENERAL_MESSAGE, $lang['No_post_mode']);
@@ -153,7 +153,7 @@ switch( $mode )
// Here we do various lookups to find topic_id, forum_id, post_id etc.
// Doing it here prevents spoofing (eg. faking forum_id, topic_id or post_id
//
-$error_msg = "";
+$error_msg = '';
$post_data = array();
switch ( $mode )
{
@@ -219,12 +219,12 @@ if ( $result = $db->sql_query($sql) )
{
message_die(GENERAL_MESSAGE, $lang['Forum_locked']);
}
- else if ( $mode != "newtopic" && $post_info['topic_status'] == TOPIC_LOCKED && !$is_auth['auth_mod'])
+ else if ( $mode != 'newtopic' && $post_info['topic_status'] == TOPIC_LOCKED && !$is_auth['auth_mod'])
{
message_die(GENERAL_MESSAGE, $lang['Topic_locked']);
}
- if ( $mode == "editpost" || $mode == "delete" || $mode == "poll_delete" )
+ if ( $mode == 'editpost' || $mode == 'delete' || $mode == 'poll_delete' )
{
$topic_id = $post_info['topic_id'];
@@ -292,12 +292,12 @@ if ( $result = $db->sql_query($sql) )
}
else
{
- if ( $mode == "quote" )
+ if ( $mode == 'quote' )
{
$topic_id = $post_info['topic_id'];
}
- $post_data['first_post'] = ( $mode == "newtopic" ) ? true : 0;
+ $post_data['first_post'] = ( $mode == 'newtopic' ) ? true : 0;
$post_data['last_post'] = false;
$post_data['has_poll'] = false;
$post_data['edit_poll'] = false;
@@ -374,7 +374,7 @@ if ( $submit || $refresh )
}
else
{
- if ( $mode != "newtopic" )
+ if ( $mode != 'newtopic' )
{
$sql = "SELECT topic_id
FROM " . TOPICS_WATCH_TABLE . "
@@ -406,7 +406,7 @@ if ( ( $delete || $poll_delete || $mode == "delete" ) && !$confirm )
$s_hidden_fields = '<input type="hidden" name="' . POST_POST_URL . '" value="' . $post_id . '" />';
$s_hidden_fields .= ( $delete || $mode == "delete" ) ? '<input type="hidden" name="mode" value="delete" />' : '<input type="hidden" name="mode" value="poll_delete" />';
- $l_confirm = ( $delete || $mode == "delete" ) ? $lang['Confirm_delete'] : $lang['Confirm_delete_poll'];
+ $l_confirm = ( $delete || $mode == 'delete' ) ? $lang['Confirm_delete'] : $lang['Confirm_delete_poll'];
//
// Output confirmation page
@@ -414,25 +414,25 @@ if ( ( $delete || $poll_delete || $mode == "delete" ) && !$confirm )
include($phpbb_root_path . 'includes/page_header.'.$phpEx);
$template->set_filenames(array(
- "confirm_body" => "confirm_body.tpl")
+ 'confirm_body' => 'confirm_body.tpl')
);
$template->assign_vars(array(
- "MESSAGE_TITLE" => $lang['Information'],
- "MESSAGE_TEXT" => $l_confirm,
+ 'MESSAGE_TITLE' => $lang['Information'],
+ 'MESSAGE_TEXT' => $l_confirm,
- "L_YES" => $lang['Yes'],
- "L_NO" => $lang['No'],
+ 'L_YES' => $lang['Yes'],
+ 'L_NO' => $lang['No'],
- "S_CONFIRM_ACTION" => append_sid("posting.$phpEx"),
- "S_HIDDEN_FIELDS" => $s_hidden_fields)
+ 'S_CONFIRM_ACTION' => append_sid("posting.$phpEx"),
+ 'S_HIDDEN_FIELDS' => $s_hidden_fields)
);
- $template->pparse("confirm_body");
+ $template->pparse('confirm_body');
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
}
-else if ( $mode == "vote" )
+else if ( $mode == 'vote' )
{
//
// Vote in a poll
@@ -496,7 +496,7 @@ else if ( $mode == "vote" )
}
$template->assign_vars(array(
- "META" => '<meta http-equiv="refresh" content="3;url=' . append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id") . '">')
+ 'META' => '<meta http-equiv="refresh" content="3;url=' . append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id") . '">')
);
$message .= '<br /><br />' . sprintf($lang['Click_view_message'], '<a href="' . append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id") . '">', '</a>');
message_die(GENERAL_MESSAGE, $message);
@@ -507,26 +507,25 @@ else if ( $submit || $confirm )
//
// Submit post/vote (newtopic, edit, reply, etc.)
//
- $return_message = "";
- $return_meta = "";
+ $return_message = '';
+ $return_meta = '';
switch ( $mode )
{
case 'editpost':
-
case 'newtopic':
case 'reply':
- $username = ( !empty($HTTP_POST_VARS['username']) ) ? $HTTP_POST_VARS['username'] : "";
- $subject = ( !empty($HTTP_POST_VARS['subject']) ) ? $HTTP_POST_VARS['subject'] : "";
- $message = ( !empty($HTTP_POST_VARS['message']) ) ? $HTTP_POST_VARS['message'] : "";
- $poll_title = ( isset($HTTP_POST_VARS['poll_title']) && $is_auth['auth_pollcreate'] ) ? $HTTP_POST_VARS['poll_title'] : "";
- $poll_options = ( isset($HTTP_POST_VARS['poll_option_text']) && $is_auth['auth_pollcreate'] ) ? $HTTP_POST_VARS['poll_option_text'] : "";
- $poll_length = ( isset($HTTP_POST_VARS['poll_length']) && $is_auth['auth_pollcreate'] ) ? $HTTP_POST_VARS['poll_length'] : "";
- $bbcode_uid = "";
+ $username = ( !empty($HTTP_POST_VARS['username']) ) ? $HTTP_POST_VARS['username'] : '';
+ $subject = ( !empty($HTTP_POST_VARS['subject']) ) ? $HTTP_POST_VARS['subject'] : '';
+ $message = ( !empty($HTTP_POST_VARS['message']) ) ? $HTTP_POST_VARS['message'] : '';
+ $poll_title = ( isset($HTTP_POST_VARS['poll_title']) && $is_auth['auth_pollcreate'] ) ? $HTTP_POST_VARS['poll_title'] : '';
+ $poll_options = ( isset($HTTP_POST_VARS['poll_option_text']) && $is_auth['auth_pollcreate'] ) ? $HTTP_POST_VARS['poll_option_text'] : '';
+ $poll_length = ( isset($HTTP_POST_VARS['poll_length']) && $is_auth['auth_pollcreate'] ) ? $HTTP_POST_VARS['poll_length'] : '';
+ $bbcode_uid = '';
prepare_post($mode, $post_data, $bbcode_on, $html_on, $smilies_on, $error_msg, $username, $bbcode_uid, $subject, $message, $poll_title, $poll_options, $poll_length);
- if ( $error_msg == "" )
+ if ( $error_msg == '' )
{
$topic_type = ( $topic_type != $post_data['topic_type'] && !$is_auth['auth_sticky'] && !$is_auth['auth_announce'] ) ? $post_data['topic_type'] : $topic_type;
@@ -541,12 +540,17 @@ else if ( $submit || $confirm )
break;
}
- if ( $error_msg == "" )
+ if ( $mode != 'editpost' )
+ {
+ update_post_stats($mode, $post_data, $forum_id, $topic_id, $post_id, $post_data['poster_id']);
+ }
+
+ if ( $error_msg == '' )
{
- if ( $mode == "newtopic" || $mode == "reply" )
+ if ( $mode == 'newtopic' || $mode == 'reply' )
{
- $tracking_topics = ( !empty($HTTP_COOKIE_VARS[$board_config['cookie_name'] . "_t"]) ) ? unserialize($HTTP_COOKIE_VARS[$board_config['cookie_name'] . "_t"]) : array();
- $tracking_forums = ( !empty($HTTP_COOKIE_VARS[$board_config['cookie_name'] . "_f"]) ) ? unserialize($HTTP_COOKIE_VARS[$board_config['cookie_name'] . "_f"]) : array();
+ $tracking_topics = ( !empty($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_t']) ) ? unserialize($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_t']) : array();
+ $tracking_forums = ( !empty($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_f']) ) ? unserialize($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_f']) : array();
if ( count($tracking_topics) + count($tracking_forums) == 100 && empty($tracking_topics[$topic_id]) )
{
@@ -556,7 +560,7 @@ else if ( $submit || $confirm )
$tracking_topics[$topic_id] = time();
- setcookie($board_config['cookie_name'] . "_t", serialize($tracking_topics), 0, $board_config['cookie_path'], $board_config['cookie_domain'], $board_config['cookie_secure']);
+ setcookie($board_config['cookie_name'] . '_t', serialize($tracking_topics), 0, $board_config['cookie_path'], $board_config['cookie_domain'], $board_config['cookie_secure']);
}
$template->assign_vars(array(
@@ -566,16 +570,13 @@ else if ( $submit || $confirm )
}
}
-//
-//
-//
-if( $refresh || isset($HTTP_POST_VARS['del_poll_option']) || $error_msg != "" )
+if( $refresh || isset($HTTP_POST_VARS['del_poll_option']) || $error_msg != '' )
{
- $username = ( !empty($HTTP_POST_VARS['username']) ) ? htmlspecialchars(trim(stripslashes($HTTP_POST_VARS['username']))) : "";
- $subject = ( !empty($HTTP_POST_VARS['subject']) ) ? htmlspecialchars(trim(stripslashes($HTTP_POST_VARS['subject']))) : "";
- $message = ( !empty($HTTP_POST_VARS['message']) ) ? trim(stripslashes($HTTP_POST_VARS['message'])) : "";
+ $username = ( !empty($HTTP_POST_VARS['username']) ) ? htmlspecialchars(trim(stripslashes($HTTP_POST_VARS['username']))) : '';
+ $subject = ( !empty($HTTP_POST_VARS['subject']) ) ? htmlspecialchars(trim(stripslashes($HTTP_POST_VARS['subject']))) : '';
+ $message = ( !empty($HTTP_POST_VARS['message']) ) ? htmlspecialchars(trim(stripslashes($HTTP_POST_VARS['message']))) : '';
- $poll_title = ( !empty($HTTP_POST_VARS['poll_title']) ) ? htmlspecialchars(trim(stripslashes($HTTP_POST_VARS['poll_title']))) : "";
+ $poll_title = ( !empty($HTTP_POST_VARS['poll_title']) ) ? htmlspecialchars(trim(stripslashes($HTTP_POST_VARS['poll_title']))) : '';
$poll_length = ( isset($HTTP_POST_VARS['poll_length']) ) ? max(0, intval($HTTP_POST_VARS['poll_length'])) : 0;
$poll_options = array();
@@ -601,11 +602,11 @@ if( $refresh || isset($HTTP_POST_VARS['del_poll_option']) || $error_msg != "" )
if ( $mode == 'newtopic' || $mode == 'reply')
{
- $user_sig = ( $userdata['user_sig'] != "" ) ? $userdata['user_sig'] : "";
+ $user_sig = ( $userdata['user_sig'] != '' ) ? $userdata['user_sig'] : '';
}
else if ( $mode == 'editpost' )
{
- $user_sig = ( $post_info['user_sig'] != "" ) ? $post_info['user_sig'] : "";
+ $user_sig = ( $post_info['user_sig'] != '' ) ? $post_info['user_sig'] : '';
}
if( $preview )
@@ -614,8 +615,8 @@ if( $refresh || isset($HTTP_POST_VARS['del_poll_option']) || $error_msg != "" )
$replacement_word = array();
obtain_word_list($orig_word, $replacement_word);
- $bbcode_uid = ( $bbcode_on ) ? make_bbcode_uid() : "";
- $preview_message = stripslashes(prepare_message(addslashes($message), $html_on, $bbcode_on, $smilies_on, $bbcode_uid));
+ $bbcode_uid = ( $bbcode_on ) ? make_bbcode_uid() : '';
+ $preview_message = stripslashes(prepare_message(addslashes(unprepare_message($message)), $html_on, $bbcode_on, $smilies_on, $bbcode_uid));
$preview_subject = $subject;
$preview_username = $username;
@@ -624,13 +625,13 @@ if( $refresh || isset($HTTP_POST_VARS['del_poll_option']) || $error_msg != "" )
//
if( !$html_on )
{
- if( $user_sig != "" || !$userdata['user_allowhtml'] )
+ if( $user_sig != '' || !$userdata['user_allowhtml'] )
{
- $user_sig = preg_replace("#(<)([\/]?.*?)(>)#is", "&lt;\\2&gt;", $user_sig);
+ $user_sig = preg_replace('#(<)([\/]?.*?)(>)#is', '&lt;\2&gt;', $user_sig);
}
}
- if( $attach_sig && $user_sig != "" && $userdata['user_sig_bbcode_uid'] )
+ if( $attach_sig && $user_sig != '' && $userdata['user_sig_bbcode_uid'] )
{
$user_sig = bbencode_second_pass($user_sig, $userdata['user_sig_bbcode_uid']);
}
@@ -642,12 +643,12 @@ if( $refresh || isset($HTTP_POST_VARS['del_poll_option']) || $error_msg != "" )
if( !empty($orig_word) )
{
- $preview_username = ( !empty($username) ) ? preg_replace($orig_word, $replacement_word, $preview_username) : "";
- $preview_subject = ( !empty($subject) ) ? preg_replace($orig_word, $replacement_word, $preview_subject) : "";
- $preview_message = ( !empty($preview_message) ) ? preg_replace($orig_word, $replacement_word, $preview_message) : "";
+ $preview_username = ( !empty($username) ) ? preg_replace($orig_word, $replacement_word, $preview_username) : '';
+ $preview_subject = ( !empty($subject) ) ? preg_replace($orig_word, $replacement_word, $preview_subject) : '';
+ $preview_message = ( !empty($preview_message) ) ? preg_replace($orig_word, $replacement_word, $preview_message) : '';
}
- if( $user_sig != "" )
+ if( $user_sig != '' )
{
$user_sig = make_clickable($user_sig);
}
@@ -655,7 +656,7 @@ if( $refresh || isset($HTTP_POST_VARS['del_poll_option']) || $error_msg != "" )
if( $smilies_on )
{
- if( $userdata['user_allowsmile'] && $user_sig != "" )
+ if( $userdata['user_allowsmile'] && $user_sig != '' )
{
$user_sig = smilies_pass($user_sig);
}
@@ -663,39 +664,39 @@ if( $refresh || isset($HTTP_POST_VARS['del_poll_option']) || $error_msg != "" )
$preview_message = smilies_pass($preview_message);
}
- if( $attach_sig && $user_sig != "" )
+ if( $attach_sig && $user_sig != '' )
{
- $preview_message = $preview_message . "<br /><br />_________________<br />" . $user_sig;
+ $preview_message = $preview_message . '<br /><br />_________________<br />' . $user_sig;
}
- $preview_message = str_replace("\n", "<br />", $preview_message);
+ $preview_message = str_replace("\n", '<br />', $preview_message);
$template->set_filenames(array(
- "preview" => "posting_preview.tpl")
+ 'preview' => 'posting_preview.tpl')
);
$template->assign_vars(array(
- "TOPIC_TITLE" => $preview_subject,
- "POST_SUBJECT" => $preview_subject,
- "POSTER_NAME" => $preview_username,
- "POST_DATE" => create_date($board_config['default_dateformat'], time(), $board_config['board_timezone']),
- "MESSAGE" => $preview_message,
-
- "L_POST_SUBJECT" => $lang['Post_subject'],
- "L_PREVIEW" => $lang['Preview'],
- "L_POSTED" => $lang['Posted'])
+ 'TOPIC_TITLE' => $preview_subject,
+ 'POST_SUBJECT' => $preview_subject,
+ 'POSTER_NAME' => $preview_username,
+ 'POST_DATE' => create_date($board_config['default_dateformat'], time(), $board_config['board_timezone']),
+ 'MESSAGE' => $preview_message,
+
+ 'L_POST_SUBJECT' => $lang['Post_subject'],
+ 'L_PREVIEW' => $lang['Preview'],
+ 'L_POSTED' => $lang['Posted'])
);
- $template->assign_var_from_handle("POST_PREVIEW_BOX", "preview");
+ $template->assign_var_from_handle('POST_PREVIEW_BOX', 'preview');
}
- else if( $error_msg != "" )
+ else if( $error_msg != '' )
{
$template->set_filenames(array(
- "reg_header" => "error_body.tpl")
+ 'reg_header' => 'error_body.tpl')
);
$template->assign_vars(array(
- "ERROR_MESSAGE" => $error_msg)
+ 'ERROR_MESSAGE' => $error_msg)
);
- $template->assign_var_from_handle("ERROR_BOX", "reg_header");
+ $template->assign_var_from_handle('ERROR_BOX', 'reg_header');
}
}
else
@@ -705,21 +706,21 @@ else
//
if ( $mode == 'newtopic' )
{
- $user_sig = ( $userdata['user_sig'] != "" ) ? $userdata['user_sig'] : "";
+ $user_sig = ( $userdata['user_sig'] != '' ) ? $userdata['user_sig'] : '';
- $username = ($userdata['session_logged_in']) ? $userdata['username'] : "";
- $poll_title = "";
- $poll_length = "";
- $subject = "";
- $message = "";
+ $username = ($userdata['session_logged_in']) ? $userdata['username'] : '';
+ $poll_title = '';
+ $poll_length = '';
+ $subject = '';
+ $message = '';
}
else if ( $mode == 'reply' )
{
- $user_sig = ( $userdata['user_sig'] != "" ) ? $userdata['user_sig'] : "";
+ $user_sig = ( $userdata['user_sig'] != '' ) ? $userdata['user_sig'] : '';
- $username = ( $userdata['session_logged_in'] ) ? $userdata['username'] : "";
- $subject = "";
- $message = "";
+ $username = ( $userdata['session_logged_in'] ) ? $userdata['username'] : '';
+ $subject = '';
+ $message = '';
}
else if ( $mode == 'quote' || $mode == 'editpost' )
@@ -727,9 +728,9 @@ else
$subject = ( $post_data['first_post'] ) ? $post_info['topic_title'] : $post_info['post_subject'];
$message = $post_info['post_text'];
- if ( $mode == "editpost" )
+ if ( $mode == 'editpost' )
{
- $attach_sig = ( $post_info['enable_sig'] && $post_info['user_sig'] != "" ) ? TRUE : 0;
+ $attach_sig = ( $post_info['enable_sig'] && $post_info['user_sig'] != '' ) ? TRUE : 0;
$user_sig = $post_info['user_sig'];
$html_on = ( $post_info['enable_html'] ) ? true : false;
@@ -742,12 +743,14 @@ else
$user_sig = $userdata['user_sig'];
}
- if ( $post_info['bbcode_uid'] != "" )
+ if ( $post_info['bbcode_uid'] != '' )
{
- $message = preg_replace("/\:(([a-z0-9]:)?)" . $post_info['bbcode_uid'] . "/si", "", $message);
+ $message = preg_replace('/\:(([a-z0-9]:)?)' . $post_info['bbcode_uid'] . '/s', '', $message);
}
- $message = str_replace("<br />", "\n", $message);
- $message = preg_replace('#</textarea>#si', '&lt;/textarea&gt;', $message);
+
+ $message = str_replace('<', '&lt;', $message);
+ $message = str_replace('>', '&gt;', $message);
+ $message = str_replace('<br />', "\n", $message);
if ( $mode == 'quote' )
{
@@ -761,11 +764,11 @@ else
if ( !empty($orig_word) )
{
- $subject = ( !empty($subject) ) ? preg_replace($orig_word, $replace_word, $subject) : "";
- $message = ( !empty($message) ) ? preg_replace($orig_word, $replace_word, $message) : "";
+ $subject = ( !empty($subject) ) ? preg_replace($orig_word, $replace_word, $subject) : '';
+ $message = ( !empty($message) ) ? preg_replace($orig_word, $replace_word, $message) : '';
}
- if ( !preg_match("/^Re:/", $subject) && strlen($subject) > 0 )
+ if ( !preg_match('/^Re:/', $subject) && strlen($subject) > 0 )
{
$subject = 'Re: ' . $subject;
}
@@ -774,7 +777,7 @@ else
}
else
{
- $username = ( $post_info['user_id'] == ANONYMOUS && !empty($post_info['post_username']) ) ? $post_info['post_username'] : "";
+ $username = ( $post_info['user_id'] == ANONYMOUS && !empty($post_info['post_username']) ) ? $post_info['post_username'] : '';
}
}
}
@@ -784,7 +787,7 @@ else
//
if( $user_sig != '' )
{
- $template->assign_block_vars("signature_checkbox", array());
+ $template->assign_block_vars('signature_checkbox', array());
}
//
@@ -793,7 +796,7 @@ if( $user_sig != '' )
if ( $board_config['allow_html'] )
{
$html_status = $lang['HTML_is_ON'];
- $template->assign_block_vars("html_checkbox", array());
+ $template->assign_block_vars('html_checkbox', array());
}
else
{
@@ -806,7 +809,7 @@ else
if ( $board_config['allow_bbcode'] )
{
$bbcode_status = $lang['BBCode_is_ON'];
- $template->assign_block_vars("bbcode_checkbox", array());
+ $template->assign_block_vars('bbcode_checkbox', array());
}
else
{
@@ -819,16 +822,16 @@ else
if ( $board_config['allow_smilies'] )
{
$smilies_status = $lang['Smilies_are_ON'];
- $template->assign_block_vars("smilies_checkbox", array());
+ $template->assign_block_vars('smilies_checkbox', array());
}
else
{
$smilies_status = $lang['Smilies_are_OFF'];
}
-if( !$userdata['session_logged_in'] || ( $mode == "editpost" && $post_info['poster_id'] == ANONYMOUS ) )
+if( !$userdata['session_logged_in'] || ( $mode == 'editpost' && $post_info['poster_id'] == ANONYMOUS ) )
{
- $template->assign_block_vars("username_select", array());
+ $template->assign_block_vars('username_select', array());
}
//
@@ -836,9 +839,9 @@ if( !$userdata['session_logged_in'] || ( $mode == "editpost" && $post_info['post
//
if ( $userdata['session_logged_in'] )
{
- if ( $mode != "editpost" || ( $mode == "editpost" && $post_info['poster_id'] != ANONYMOUS ) )
+ if ( $mode != 'editpost' || ( $mode == 'editpost' && $post_info['poster_id'] != ANONYMOUS ) )
{
- $template->assign_block_vars("notify_checkbox", array());
+ $template->assign_block_vars('notify_checkbox', array());
}
}
@@ -847,7 +850,7 @@ if ( $userdata['session_logged_in'] )
//
if ( $mode == 'editpost' && ( ( $is_auth['auth_delete'] && $post_data['last_post'] && ( !$post_data['has_poll'] || $post_data['edit_poll'] ) ) || $is_auth['auth_mod'] ) )
{
- $template->assign_block_vars("delete_checkbox", array());
+ $template->assign_block_vars('delete_checkbox', array());
}
//
@@ -856,7 +859,7 @@ if ( $mode == 'editpost' && ( ( $is_auth['auth_delete'] && $post_data['last_post
$topic_type_toggle = '';
if ( $mode == 'newtopic' || ( $mode == 'editpost' && $post_data['first_post'] ) )
{
- $template->assign_block_vars("type_toggle", array());
+ $template->assign_block_vars('type_toggle', array());
if( $is_auth['auth_sticky'] )
{
@@ -878,7 +881,7 @@ if ( $mode == 'newtopic' || ( $mode == 'editpost' && $post_data['first_post'] )
$topic_type_toggle .= ' /> ' . $lang['Post_Announcement'] . '&nbsp;&nbsp;';
}
- if ( $topic_type_toggle != "" )
+ if ( $topic_type_toggle != '' )
{
$topic_type_toggle = $lang['Post_topic_as'] . ': <input type="radio" name="topictype" value="' . POST_NORMAL .'"' . ( ( $post_data['topic_type'] == POST_NORMAL ) ? ' checked="checked"' : '' ) . ' /> ' . $lang['Post_Normal'] . '&nbsp;&nbsp;' . $topic_type_toggle;
}
@@ -913,158 +916,158 @@ generate_smilies("inline", PAGE_POSTING);
include($phpbb_root_path . 'includes/page_header.'.$phpEx);
$template->set_filenames(array(
- "body" => "posting_body.tpl",
- "pollbody" => "posting_poll_body.tpl",
- "jumpbox" => "jumpbox.tpl",
- "reviewbody" => "posting_topic_review.tpl")
+ 'body' => 'posting_body.tpl',
+ 'pollbody' => 'posting_poll_body.tpl',
+ 'jumpbox' => 'jumpbox.tpl',
+ 'reviewbody' => 'posting_topic_review.tpl')
);
$jumpbox = make_jumpbox();
$template->assign_vars(array(
- "L_GO" => $lang['Go'],
- "L_JUMP_TO" => $lang['Jump_to'],
- "L_SELECT_FORUM" => $lang['Select_forum'],
+ 'L_GO' => $lang['Go'],
+ 'L_JUMP_TO' => $lang['Jump_to'],
+ 'L_SELECT_FORUM' => $lang['Select_forum'],
- "S_JUMPBOX_LIST" => $jumpbox,
- "S_JUMPBOX_ACTION" => append_sid("viewforum.$phpEx"))
+ 'S_JUMPBOX_LIST' => $jumpbox,
+ 'S_JUMPBOX_ACTION' => append_sid("viewforum.$phpEx"))
);
-$template->assign_var_from_handle("JUMPBOX", "jumpbox");
+$template->assign_var_from_handle('JUMPBOX', 'jumpbox');
$template->assign_vars(array(
- "FORUM_NAME" => $forum_name,
- "L_POST_A" => $page_title,
- "L_POST_SUBJECT" => $lang['Post_subject'],
+ 'FORUM_NAME' => $forum_name,
+ 'L_POST_A' => $page_title,
+ 'L_POST_SUBJECT' => $lang['Post_subject'],
- "U_VIEW_FORUM" => append_sid("viewforum.$phpEx?" . POST_FORUM_URL . "=$forum_id"))
+ 'U_VIEW_FORUM' => append_sid("viewforum.$phpEx?" . POST_FORUM_URL . "=$forum_id"))
);
//
// This enables the forum/topic title to be output for posting
// but not for privmsg (where it makes no sense)
//
-$template->assign_block_vars("switch_not_privmsg", array());
+$template->assign_block_vars('switch_not_privmsg', array());
//
// Output the data to the template
//
$template->assign_vars(array(
- "USERNAME" => $username,
- "SUBJECT" => $subject,
- "MESSAGE" => $message,
- "HTML_STATUS" => $html_status,
- "BBCODE_STATUS" => sprintf($bbcode_status, '<a href="' . append_sid("faq.$phpEx?mode=bbcode") . '" target="_phpbbcode">', '</a>'),
- "SMILIES_STATUS" => $smilies_status,
-
- "L_SUBJECT" => $lang['Subject'],
- "L_MESSAGE_BODY" => $lang['Message_body'],
- "L_OPTIONS" => $lang['Options'],
- "L_PREVIEW" => $lang['Preview'],
- "L_SPELLCHECK" => $lang['Spellcheck'],
- "L_SUBMIT" => $lang['Submit'],
- "L_CANCEL" => $lang['Cancel'],
- "L_CONFIRM_DELETE" => $lang['Confirm_delete'],
- "L_DISABLE_HTML" => $lang['Disable_HTML_post'],
- "L_DISABLE_BBCODE" => $lang['Disable_BBCode_post'],
- "L_DISABLE_SMILIES" => $lang['Disable_Smilies_post'],
- "L_ATTACH_SIGNATURE" => $lang['Attach_signature'],
- "L_NOTIFY_ON_REPLY" => $lang['Notify'],
- "L_DELETE_POST" => $lang['Delete_post'],
-
- "L_BBCODE_B_HELP" => $lang['bbcode_b_help'],
- "L_BBCODE_I_HELP" => $lang['bbcode_i_help'],
- "L_BBCODE_U_HELP" => $lang['bbcode_u_help'],
- "L_BBCODE_Q_HELP" => $lang['bbcode_q_help'],
- "L_BBCODE_C_HELP" => $lang['bbcode_c_help'],
- "L_BBCODE_L_HELP" => $lang['bbcode_l_help'],
- "L_BBCODE_O_HELP" => $lang['bbcode_o_help'],
- "L_BBCODE_P_HELP" => $lang['bbcode_p_help'],
- "L_BBCODE_W_HELP" => $lang['bbcode_w_help'],
- "L_BBCODE_A_HELP" => $lang['bbcode_a_help'],
- "L_BBCODE_S_HELP" => $lang['bbcode_s_help'],
- "L_BBCODE_F_HELP" => $lang['bbcode_f_help'],
- "L_EMPTY_MESSAGE" => $lang['Empty_message'],
-
- "L_FONT_COLOR" => $lang['Font_color'],
- "L_COLOR_DEFAULT" => $lang['color_default'],
- "L_COLOR_DARK_RED" => $lang['color_dark_red'],
- "L_COLOR_RED" => $lang['color_red'],
- "L_COLOR_ORANGE" => $lang['color_orange'],
- "L_COLOR_BROWN" => $lang['color_brown'],
- "L_COLOR_YELLOW" => $lang['color_yellow'],
- "L_COLOR_GREEN" => $lang['color_green'],
- "L_COLOR_OLIVE" => $lang['color_olive'],
- "L_COLOR_CYAN" => $lang['color_cyan'],
- "L_COLOR_BLUE" => $lang['color_blue'],
- "L_COLOR_DARK_BLUE" => $lang['color_dark_blue'],
- "L_COLOR_INDIGO" => $lang['color_indigo'],
- "L_COLOR_VIOLET" => $lang['color_violet'],
- "L_COLOR_WHITE" => $lang['color_white'],
- "L_COLOR_BLACK" => $lang['color_black'],
-
- "L_FONT_SIZE" => $lang['Font_size'],
- "L_FONT_TINY" => $lang['font_tiny'],
- "L_FONT_SMALL" => $lang['font_small'],
- "L_FONT_NORMAL" => $lang['font_normal'],
- "L_FONT_LARGE" => $lang['font_large'],
- "L_FONT_HUGE" => $lang['font_huge'],
-
- "L_BBCODE_CLOSE_TAGS" => $lang['Close_Tags'],
- "L_STYLES_TIP" => $lang['Styles_tip'],
-
- "U_VIEWTOPIC" => ( $mode == 'reply' ) ? append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id&amp;postorder=desc") : "",
- "U_REVIEW_TOPIC" => ( $mode == 'reply' ) ? append_sid("posting.$phpEx?mode=topicreview&amp;" . POST_TOPIC_URL . "=$topic_id") : "",
-
- "S_HTML_CHECKED" => ( !$html_on ) ? 'checked="checked"' : "",
- "S_BBCODE_CHECKED" => ( !$bbcode_on ) ? 'checked="checked"' : "",
- "S_SMILIES_CHECKED" => ( !$smilies_on ) ? 'checked="checked"' : "",
- "S_SIGNATURE_CHECKED" => ( $attach_sig ) ? 'checked="checked"' : "",
- "S_NOTIFY_CHECKED" => ( $notify_user ) ? 'checked="checked"' : "",
- "S_TYPE_TOGGLE" => $topic_type_toggle,
- "S_TOPIC_ID" => $topic_id,
- "S_POST_ACTION" => append_sid("posting.$phpEx"),
- "S_HIDDEN_FORM_FIELDS" => $hidden_form_fields)
+ 'USERNAME' => $username,
+ 'SUBJECT' => $subject,
+ 'MESSAGE' => $message,
+ 'HTML_STATUS' => $html_status,
+ 'BBCODE_STATUS' => sprintf($bbcode_status, '<a href="' . append_sid("faq.$phpEx?mode=bbcode") . '" target="_phpbbcode">', '</a>'),
+ 'SMILIES_STATUS' => $smilies_status,
+
+ 'L_SUBJECT' => $lang['Subject'],
+ 'L_MESSAGE_BODY' => $lang['Message_body'],
+ 'L_OPTIONS' => $lang['Options'],
+ 'L_PREVIEW' => $lang['Preview'],
+ 'L_SPELLCHECK' => $lang['Spellcheck'],
+ 'L_SUBMIT' => $lang['Submit'],
+ 'L_CANCEL' => $lang['Cancel'],
+ 'L_CONFIRM_DELETE' => $lang['Confirm_delete'],
+ 'L_DISABLE_HTML' => $lang['Disable_HTML_post'],
+ 'L_DISABLE_BBCODE' => $lang['Disable_BBCode_post'],
+ 'L_DISABLE_SMILIES' => $lang['Disable_Smilies_post'],
+ 'L_ATTACH_SIGNATURE' => $lang['Attach_signature'],
+ 'L_NOTIFY_ON_REPLY' => $lang['Notify'],
+ 'L_DELETE_POST' => $lang['Delete_post'],
+
+ 'L_BBCODE_B_HELP' => $lang['bbcode_b_help'],
+ 'L_BBCODE_I_HELP' => $lang['bbcode_i_help'],
+ 'L_BBCODE_U_HELP' => $lang['bbcode_u_help'],
+ 'L_BBCODE_Q_HELP' => $lang['bbcode_q_help'],
+ 'L_BBCODE_C_HELP' => $lang['bbcode_c_help'],
+ 'L_BBCODE_L_HELP' => $lang['bbcode_l_help'],
+ 'L_BBCODE_O_HELP' => $lang['bbcode_o_help'],
+ 'L_BBCODE_P_HELP' => $lang['bbcode_p_help'],
+ 'L_BBCODE_W_HELP' => $lang['bbcode_w_help'],
+ 'L_BBCODE_A_HELP' => $lang['bbcode_a_help'],
+ 'L_BBCODE_S_HELP' => $lang['bbcode_s_help'],
+ 'L_BBCODE_F_HELP' => $lang['bbcode_f_help'],
+ 'L_EMPTY_MESSAGE' => $lang['Empty_message'],
+
+ 'L_FONT_COLOR' => $lang['Font_color'],
+ 'L_COLOR_DEFAULT' => $lang['color_default'],
+ 'L_COLOR_DARK_RED' => $lang['color_dark_red'],
+ 'L_COLOR_RED' => $lang['color_red'],
+ 'L_COLOR_ORANGE' => $lang['color_orange'],
+ 'L_COLOR_BROWN' => $lang['color_brown'],
+ 'L_COLOR_YELLOW' => $lang['color_yellow'],
+ 'L_COLOR_GREEN' => $lang['color_green'],
+ 'L_COLOR_OLIVE' => $lang['color_olive'],
+ 'L_COLOR_CYAN' => $lang['color_cyan'],
+ 'L_COLOR_BLUE' => $lang['color_blue'],
+ 'L_COLOR_DARK_BLUE' => $lang['color_dark_blue'],
+ 'L_COLOR_INDIGO' => $lang['color_indigo'],
+ 'L_COLOR_VIOLET' => $lang['color_violet'],
+ 'L_COLOR_WHITE' => $lang['color_white'],
+ 'L_COLOR_BLACK' => $lang['color_black'],
+
+ 'L_FONT_SIZE' => $lang['Font_size'],
+ 'L_FONT_TINY' => $lang['font_tiny'],
+ 'L_FONT_SMALL' => $lang['font_small'],
+ 'L_FONT_NORMAL' => $lang['font_normal'],
+ 'L_FONT_LARGE' => $lang['font_large'],
+ 'L_FONT_HUGE' => $lang['font_huge'],
+
+ 'L_BBCODE_CLOSE_TAGS' => $lang['Close_Tags'],
+ 'L_STYLES_TIP' => $lang['Styles_tip'],
+
+ 'U_VIEWTOPIC' => ( $mode == 'reply' ) ? append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id&amp;postorder=desc") : '',
+ 'U_REVIEW_TOPIC' => ( $mode == 'reply' ) ? append_sid("posting.$phpEx?mode=topicreview&amp;" . POST_TOPIC_URL . "=$topic_id") : '',
+
+ 'S_HTML_CHECKED' => ( !$html_on ) ? 'checked="checked"' : '',
+ 'S_BBCODE_CHECKED' => ( !$bbcode_on ) ? 'checked="checked"' : '',
+ 'S_SMILIES_CHECKED' => ( !$smilies_on ) ? 'checked="checked"' : '',
+ 'S_SIGNATURE_CHECKED' => ( $attach_sig ) ? 'checked="checked"' : '',
+ 'S_NOTIFY_CHECKED' => ( $notify_user ) ? 'checked="checked"' : '',
+ 'S_TYPE_TOGGLE' => $topic_type_toggle,
+ 'S_TOPIC_ID' => $topic_id,
+ 'S_POST_ACTION' => append_sid("posting.$phpEx"),
+ 'S_HIDDEN_FORM_FIELDS' => $hidden_form_fields)
);
//
// Poll entry switch/output
//
-if( ( $mode == "newtopic" || ( $mode == "editpost" && $post_data['first_post'] ) ) && $is_auth['auth_pollcreate'] )
+if( ( $mode == 'newtopic' || ( $mode == 'editpost' && $post_data['first_post'] ) ) && $is_auth['auth_pollcreate'] )
{
$template->assign_vars(array(
- "L_ADD_A_POLL" => $lang['Add_poll'],
- "L_ADD_POLL_EXPLAIN" => $lang['Add_poll_explain'],
- "L_POLL_QUESTION" => $lang['Poll_question'],
- "L_POLL_OPTION" => $lang['Poll_option'],
- "L_ADD_OPTION" => $lang['Add_option'],
- "L_UPDATE_OPTION" => $lang['Update'],
- "L_DELETE_OPTION" => $lang['Delete'],
- "L_POLL_LENGTH" => $lang['Poll_for'],
- "L_DAYS" => $lang['Days'],
- "L_POLL_LENGTH_EXPLAIN" => $lang['Poll_for_explain'],
- "L_POLL_DELETE" => $lang['Delete_poll'],
+ 'L_ADD_A_POLL' => $lang['Add_poll'],
+ 'L_ADD_POLL_EXPLAIN' => $lang['Add_poll_explain'],
+ 'L_POLL_QUESTION' => $lang['Poll_question'],
+ 'L_POLL_OPTION' => $lang['Poll_option'],
+ 'L_ADD_OPTION' => $lang['Add_option'],
+ 'L_UPDATE_OPTION' => $lang['Update'],
+ 'L_DELETE_OPTION' => $lang['Delete'],
+ 'L_POLL_LENGTH' => $lang['Poll_for'],
+ 'L_DAYS' => $lang['Days'],
+ 'L_POLL_LENGTH_EXPLAIN' => $lang['Poll_for_explain'],
+ 'L_POLL_DELETE' => $lang['Delete_poll'],
- "POLL_TITLE" => $poll_title,
- "POLL_LENGTH" => $poll_length)
+ 'POLL_TITLE' => $poll_title,
+ 'POLL_LENGTH' => $poll_length)
);
if( $mode == 'editpost' && $post_data['edit_poll'] )
{
- $template->assign_block_vars("poll_delete_toggle", array());
+ $template->assign_block_vars('poll_delete_toggle', array());
}
if( !empty($poll_options) )
{
while( list($option_id, $option_text) = each($poll_options) )
{
- $template->assign_block_vars("poll_option_rows", array(
- "POLL_OPTION" => $option_text,
+ $template->assign_block_vars('poll_option_rows', array(
+ 'POLL_OPTION' => $option_text,
- "S_POLL_OPTION_NUM" => $option_id)
+ 'S_POLL_OPTION_NUM' => $option_id)
);
}
}
- $template->assign_var_from_handle("POLLBOX", "pollbody");
+ $template->assign_var_from_handle('POLLBOX', 'pollbody');
}
//
@@ -1075,14 +1078,14 @@ if( $mode == 'reply' )
require($phpbb_root_path . 'includes/topic_review.'.$phpEx);
topic_review($topic_id, true);
- $template->assign_block_vars("switch_inline_mode", array());
- $template->assign_var_from_handle("TOPIC_REVIEW_BOX", "reviewbody");
+ $template->assign_block_vars('switch_inline_mode', array());
+ $template->assign_var_from_handle('TOPIC_REVIEW_BOX', 'reviewbody');
}
//
// Parse and print the body
//
-$template->pparse("body");
+$template->pparse('body');
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
diff --git a/phpBB/privmsg.php b/phpBB/privmsg.php
index 49053916a1..01029e0c9c 100644
--- a/phpBB/privmsg.php
+++ b/phpBB/privmsg.php
@@ -20,11 +20,12 @@
*
***************************************************************************/
+define('IN_PHPBB', true);
$phpbb_root_path = "./";
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
-include($phpbb_root_path . 'includes/post.'.$phpEx);
include($phpbb_root_path . 'includes/bbcode.'.$phpEx);
+include($phpbb_root_path . 'includes/functions_post.'.$phpEx);
//
// Is PM disabled?
diff --git a/phpBB/profile.php b/phpBB/profile.php
index 390b5693e0..1f9919b61f 100644
--- a/phpBB/profile.php
+++ b/phpBB/profile.php
@@ -20,11 +20,10 @@
*
***************************************************************************/
-$phpbb_root_path = "./";
+define('IN_PHPBB', true);
+$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
-include($phpbb_root_path . 'includes/post.'.$phpEx);
-include($phpbb_root_path . 'includes/bbcode.'.$phpEx);
//
// Start session management
@@ -35,13 +34,15 @@ init_userprefs($userdata);
// End session management
//
+define('IN_PROFILE', true);
+
//
// Set default email variables
//
-$script_name = preg_replace("/^\/?(.*?)\/?$/", "\\1", trim($board_config['script_path']));
+$script_name = preg_replace('/^\/?(.*?)\/?$/', '\1', trim($board_config['script_path']));
$script_name = ( $script_name != '' ) ? $script_name . '/profile.'.$phpEx : 'profile.'.$phpEx;
$server_name = trim($board_config['server_name']);
-$server_protocol = ( $board_config['cookie_secure'] ) ? "https://" : "http://";
+$server_protocol = ( $board_config['cookie_secure'] ) ? 'https://' : 'http://';
$server_port = ( $board_config['server_port'] <> 80 ) ? ':' . trim($board_config['server_port']) . '/' : '/';
$server_url = $server_protocol . $server_name . $server_port . $script_name;
@@ -49,102 +50,14 @@ $server_url = $server_protocol . $server_name . $server_port . $script_name;
// -----------------------
// Page specific functions
//
-//
-// Check to see if email address is banned
-// or already present in the DB
-//
-function validate_email($email)
-{
- global $db, $lang;
-
- if ( $email != "" )
- {
- if ( preg_match('/^[a-z0-9\.\-_]+@[a-z0-9\-_]+\.([a-z0-9\-_]+\.)*?[a-z]+$/is', $email) )
- {
- $sql = "SELECT ban_email
- FROM " . BANLIST_TABLE;
- if ( $result = $db->sql_query($sql) )
- {
- while( $row = $db->sql_fetchrow($result) )
- {
- $match_email = str_replace("*@", ".*@", $row['ban_email']);
- if ( preg_match("/^" . $match_email . "$/is", $email) )
- {
- return array('error' => true, 'error_msg' => $lang['Email_banned']);
- }
- }
- }
-
- $sql = "SELECT user_email
- FROM " . USERS_TABLE . "
- WHERE user_email = '" . str_replace("\'", "''", $email) . "'";
- if ( !($result = $db->sql_query($sql)) )
- {
- message_die(GENERAL_ERROR, "Couldn't obtain user email information.", "", __LINE__, __FILE__, $sql);
- }
-
- if ( $email_taken = $db->sql_fetchrow($result) )
- {
- return array('error' => true, 'error_msg' => $lang['Email_taken']);
- }
-
- return array('error' => false, 'error_msg' => '');
- }
- }
-
- return array('error' => true, 'error_msg' => $lang['Email_invalid']);
-}
-
-//
-// Does supplementary validation of optional profile fields. This expects common stuff like trim() and strip_tags()
-// to have already been run. Params are passed by-ref, so we can set them to the empty string if they fail.
-//
-function validate_optional_fields(&$icq, &$aim, &$msnm, &$yim, &$website, &$location, &$occupation, &$interests, &$sig)
-{
- $check_var_length = array('aim', 'msnm', 'yim', 'location', 'occupation', 'interests', 'sig');
-
- for($i = 0; $i < count($check_var_length); $i++)
- {
- if ( strlen($$check_var_length[$i]) < 2 )
- {
- $$check_var_length[$i] = '';
- }
- }
-
- // ICQ number has to be only numbers.
- if ( !preg_match('/^[0-9]+$/', $icq) )
- {
- $icq = '';
- }
-
- // website has to start with http://, followed by something with length at least 3 that
- // contains at least one dot.
- if ( $website != "" )
- {
- if ( !preg_match('#^http:\/\/#i', $website) )
- {
- $website = "http://" . $website;
- }
-
- if ( !preg_match('#^http\\:\\/\\/[a-z0-9\-]+\.([a-z0-9\-]+\.)?[a-z]+#i', $website) )
- {
- $website = '';
- }
- }
-
- return;
-}
-
function gen_rand_string($hash)
{
- $chars = array(
- "a","A","b","B","c","C","d","D","e","E","f","F","g","G","h","H","i","I","j","J", "k","K","l","L","m","M","n","N","o","O","p","P","q","Q","r","R","s","S","t","T", "u","U","v","V","w","W","x","X","y","Y","z","Z","1","2","3","4","5","6","7","8",
- "9","0");
+ $chars = array( 'a', 'A', 'b', 'B', 'c', 'C', 'd', 'D', 'e', 'E', 'f', 'F', 'g', 'G', 'h', 'H', 'i', 'I', 'j', 'J', 'k', 'K', 'l', 'L', 'm', 'M', 'n', 'N', 'o', 'O', 'p', 'P', 'q', 'Q', 'r', 'R', 's', 'S', 't', 'T', 'u', 'U', 'v', 'V', 'w', 'W', 'x', 'X', 'y', 'Y', 'z', 'Z', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0');
$max_chars = count($chars) - 1;
- srand((double)microtime()*1000000);
+ srand( (double) microtime()*1000000);
- $rand_str = "";
+ $rand_str = '';
for($i = 0; $i < 8; $i++)
{
$rand_str = ( $i == 0 ) ? $chars[rand(0, $max_chars)] : $rand_str . $chars[rand(0, $max_chars)];
@@ -156,1858 +69,49 @@ function gen_rand_string($hash)
// End page specific functions
// ---------------------------
-
//
// Start of program proper
//
-if( isset($HTTP_GET_VARS['mode']) || isset($HTTP_POST_VARS['mode']) )
+if ( isset($HTTP_GET_VARS['mode']) || isset($HTTP_POST_VARS['mode']) )
{
$mode = ( isset($HTTP_GET_VARS['mode']) ) ? $HTTP_GET_VARS['mode'] : $HTTP_POST_VARS['mode'];
- if ( $mode == "viewprofile" )
+ if ( $mode == 'viewprofile' )
{
- if ( empty($HTTP_GET_VARS[POST_USERS_URL]) || $HTTP_GET_VARS[POST_USERS_URL] == ANONYMOUS )
- {
- message_die(GENERAL_MESSAGE, $lang['No_user_id_specified']);
- }
- $profiledata = get_userdata(intval($HTTP_GET_VARS[POST_USERS_URL]));
-
- $sql = "SELECT *
- FROM " . RANKS_TABLE . "
- ORDER BY rank_special, rank_min";
- if ( !($result = $db->sql_query($sql)) )
- {
- message_die(GENERAL_ERROR, "Couldn't obtain ranks information.", "", __LINE__, __FILE__, $sql);
- }
-
- $ranksrow = $db->sql_fetchrowset($result);
- $db->sql_freeresult($result);
-
- //
- // Output page header and profile_view template
- //
- $template->set_filenames(array(
- "body" => "profile_view_body.tpl",
- "jumpbox" => "jumpbox.tpl")
- );
-
- $jumpbox = make_jumpbox();
- $template->assign_vars(array(
- "L_GO" => $lang['Go'],
- "L_JUMP_TO" => $lang['Jump_to'],
- "L_SELECT_FORUM" => $lang['Select_forum'],
-
- "S_JUMPBOX_LIST" => $jumpbox,
- "S_JUMPBOX_ACTION" => append_sid("viewforum.$phpEx"))
- );
- $template->assign_var_from_handle("JUMPBOX", "jumpbox");
-
- //
- // Calculate the number of days this user has been a member ($memberdays)
- // Then calculate their posts per day
- //
- $regdate = $profiledata['user_regdate'];
- $memberdays = max(1, round( ( time() - $regdate ) / 86400 ));
- $posts_per_day = $profiledata['user_posts'] / $memberdays;
-
- // Get the users percentage of total posts
- if ( $profiledata['user_posts'] != 0 )
- {
- $total_posts = get_db_stat("postcount");
- $percentage = ( $total_posts ) ? min(100, ($profiledata['user_posts'] / $total_posts) * 100) : 0;
- }
- else
- {
- $percentage = 0;
- }
-
- if ( !empty($profiledata['user_viewemail']) || $userdata['user_level'] == ADMIN )
- {
- $email_uri = ( $board_config['board_email_form'] ) ? append_sid("profile.$phpEx?mode=email&amp;" . POST_USERS_URL ."=" . $profiledata['user_id']) : "mailto:" . $profiledata['user_email'];
-
- $email = '<a href="' . $email_uri . '">' . $lang['Send_email'] . '</a>';
- $email_img = '<a href="' . $email_uri . '"><img src="' . $images['icon_email'] . '" alt="' . $lang['Send_email'] . '" border="0" /></a>';
- }
- else
- {
- $email = "";
- $email_img = "";
- }
-
- $avatar_img = "";
- if ( $profiledata['user_avatar_type'] && $profiledata['user_allowavatar'] )
- {
- switch( $profiledata['user_avatar_type'] )
- {
- case USER_AVATAR_UPLOAD:
- $avatar_img = ( $board_config['allow_avatar_upload'] ) ? '<img src="' . $board_config['avatar_path'] . "/" . $profiledata['user_avatar'] . '" alt="" border="0" />' : '';
- break;
- case USER_AVATAR_REMOTE:
- $avatar_img = ( $board_config['allow_avatar_remote'] ) ? '<img src="' . $profiledata['user_avatar'] . '" alt="" border="0" />' : '';
- break;
- case USER_AVATAR_GALLERY:
- $avatar_img = ( $board_config['allow_avatar_local'] ) ? '<img src="' . $board_config['avatar_gallery_path'] . '/' . $profiledata['user_avatar'] . '" alt="" border="0" />' : '';
- break;
- }
- }
-
- $poster_rank = "";
- $rank_image = "";
- if ( $profiledata['user_rank'] )
- {
- for($i = 0; $i < count($ranksrow); $i++)
- {
- if ( $profiledata['user_rank'] == $ranksrow[$i]['rank_id'] && $ranksrow[$i]['rank_special'] )
- {
- $poster_rank = $ranksrow[$i]['rank_title'];
- $rank_image = ( $ranksrow[$i]['rank_image'] ) ? '<img src="' . $ranksrow[$i]['rank_image'] . '" alt="' . $poster_rank . '" title="' . $poster_rank . '" border="0" /><br />' : "";
- }
- }
- }
- else
- {
- for($i = 0; $i < count($ranksrow); $i++)
- {
- if ( $profiledata['user_posts'] > $ranksrow[$i]['rank_min'] && !$ranksrow[$i]['rank_special'] )
- {
- $poster_rank = $ranksrow[$i]['rank_title'];
- $rank_image = ( $ranksrow[$i]['rank_image'] ) ? '<img src="' . $ranksrow[$i]['rank_image'] . '" alt="' . $poster_rank . '" title="' . $poster_rank . '" border="0" /><br />' : "";
- }
- }
- }
-
- if ( !empty($profiledata['user_icq']) )
- {
- $icq_status_img = '<a href="http://wwp.icq.com/' . $profiledata['user_icq'] . '#pager"><img src="http://web.icq.com/whitepages/online?icq=' . $profiledata['user_icq'] . '&amp;img=5" width="18" height="18" border="0" /></a>';
- $icq_add_img = '<a href="http://wwp.icq.com/scripts/search.dll?to=' . $profiledata['user_icq'] . '"><img src="' . $images['icon_icq'] . '" alt="' . $lang['ICQ'] . '" border="0" /></a>';
- }
- else
- {
- $icq_status_img = "&nbsp;";
- $icq_add_img = "&nbsp;";
- }
-
- $aim_img = ( $profiledata['user_aim'] ) ? '<a href="aim:goim?screenname=' . $profiledata['user_aim'] . '&amp;message=Hello+Are+you+there?"><img src="' . $images['icon_aim'] . '" border="0" alt="' . $lang['AIM'] . '" /></a>' : "&nbsp;";
-
- $msnm_img = ( $profiledata['user_msnm'] ) ? '<img src="' . $images['icon_msnm'] . '" border="0" alt="' . $lang['MSNM'] . '" /> ' . $profiledata['user_msnm'] : "&nbsp;";
-
- $yim_img = ( $profiledata['user_yim'] ) ? '<a href="http://edit.yahoo.com/config/send_webmesg?.target=' . $profiledata['user_yim'] . '&amp;.src=pg"><img src="' . $images['icon_yim'] . '" border="0" alt="' . $lang['YIM'] . '" /></a>' : "&nbsp;";
-
- $search_img = '<a href="' . append_sid("search.$phpEx?search_author=" . urlencode($profiledata['username']) . "&amp;showresults=posts") . '"><img src="' . $images['icon_search'] . '" border="0" alt="' . $lang['Search_user_posts'] . '" /></a>';
- $search = "<a href=\"" . append_sid("search.$phpEx?search_author=" . urlencode($profiledata['username']) . "&amp;showresults=posts") . "\">" . $lang['Search_user_posts'] . "</a>";
-
- $www_img = ( $profiledata['user_website'] ) ? '<a href="' . $profiledata['user_website'] . '"><img src="' . $images['icon_www'] . '" alt="' . $lang['Visit_website'] . '" border="0" /></a>' : "&nbsp;";
-
- $pm_img = "<a href=\"" . append_sid("privmsg.$phpEx?mode=post&amp;" . POST_USERS_URL . "=" . $profiledata['user_id']) . "\"><img src=\"". $images['icon_pm'] . "\" alt=\"" . $lang['Send_private_message'] . "\" border=\"0\" /></a>";
-
- $template->assign_vars(array(
- "USERNAME" => $profiledata['username'],
- "JOINED" => create_date($lang['DATE_FORMAT'], $profiledata['user_regdate'], $board_config['board_timezone']),
- "POSTER_RANK" => $poster_rank,
- "RANK_IMAGE" => $rank_image,
- "POSTS_PER_DAY" => $posts_per_day,
- "POSTS" => $profiledata['user_posts'],
- "PERCENTAGE" => $percentage . "%",
- "POST_DAY_STATS" => sprintf($lang['User_post_day_stats'], $posts_per_day),
- "POST_PERCENT_STATS" => sprintf($lang['User_post_pct_stats'], $percentage),
- "EMAIL" => $email,
- "EMAIL_IMG" => $email_img,
- "PM_IMG" => $pm_img,
- "UL_SEARCH" => $search,
- "SEARCH_IMG" => $search_img,
- "ICQ" => ( $profiledata['user_icq'] ) ? $profiledata['user_icq'] : "&nbsp;",
- "ICQ_IMG" => ( $profiledata['user_icq'] ) ? $images['icon_icq'] : "&nbsp;",
- "ICQ_ADD_IMG" => $icq_add_img,
- "ICQ_STATUS_IMG" => $icq_status_img,
- "AIM" => ( $profiledata['user_aim'] ) ? '<a href="aim:goim?screenname=' . $profiledata['user_aim'] . '&amp;message=Hello+Are+you+there?">' . $profiledata['user_aim'] . '</a>' : "&nbsp;",
- "AIM_IMG" => $aim_img,
- "MSN" => ( $profiledata['user_msnm'] ) ? $profiledata['user_msnm'] : "&nbsp;",
- "MSN_IMG" => $msnm_img,
- "YIM" => ( $profiledata['user_yim'] ) ? '<a href="http://edit.yahoo.com/config/send_webmesg?.target=' . $profiledata['user_yim'] . '&amp;.src=pg">' . $profiledata['user_yim'] . '</a>' : "&nbsp;",
- "YIM_IMG" => $yim_img,
- "WEBSITE" => ( $profiledata['user_website'] ) ? '<a href="' . $profiledata['user_website'] . '" target="_phpbbwebsite">' . $profiledata['user_website'] . '</a>' : "&nbsp;",
- "WEBSITE_IMG" => $www_img,
- "LOCATION" => ( $profiledata['user_from'] ) ? $profiledata['user_from'] : "&nbsp;",
- "OCCUPATION" => ( $profiledata['user_occ'] ) ? $profiledata['user_occ'] : "&nbsp;",
- "INTERESTS" => ( $profiledata['user_interests'] ) ? $profiledata['user_interests'] : "&nbsp;",
- "AVATAR_IMG" => $avatar_img,
-
- "L_VIEWING_PROFILE" => sprintf($lang['Viewing_user_profile'], $profiledata['username']),
- "L_ABOUT_USER" => sprintf($lang['About_user'], $profiledata['username']),
- "L_AVATAR" => $lang['Avatar'],
- "L_POSTER_RANK" => $lang['Poster_rank'],
- "L_TOTAL_POSTS" => $lang['Total_posts'],
- "L_SEARCH_USER_POSTS" => sprintf($lang['Search_user_posts'], $profiledata['username']),
- "L_CONTACT" => $lang['Contact'],
- "L_EMAIL_ADDRESS" => $lang['Email_address'],
- "L_EMAIL" => $lang['Email'],
- "L_PM" => $lang['Private_Message'],
- "L_ICQ_NUMBER" => $lang['ICQ'],
- "L_YAHOO" => $lang['YIM'],
- "L_AIM" => $lang['AIM'],
- "L_MESSENGER" => $lang['MSNM'],
- "L_WEBSITE" => $lang['Website'],
- "L_LOCATION" => $lang['Location'],
- "L_OCCUPATION" => $lang['Occupation'],
- "L_INTERESTS" => $lang['Interests'],
-
- "U_SEARCH_USER" => append_sid("search.$phpEx?search_author=" . urlencode($profiledata['username'])),
-
- "S_PROFILE_ACTION" => append_sid("profile.$phpEx"))
- );
-
- $page_title = $lang['Viewing_profile'];
- include($phpbb_root_path . 'includes/page_header.'.$phpEx);
-
- $template->pparse("body");
-
- include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
-
+ include($phpbb_root_path . 'includes/usercp_viewprofile.'.$phpEx);
+ exit;
}
- else if ( $mode == "editprofile" || $mode == "register" )
+ else if ( $mode == 'editprofile' || $mode == 'register' )
{
-
- if ( !$userdata['session_logged_in'] && $mode == "editprofile" )
+ if ( !$userdata['session_logged_in'] && $mode == 'editprofile' )
{
header("Location: " . append_sid("login.$phpEx?redirect=profile.$phpEx&mode=editprofile", true));
+ exit;
}
- $page_title = ($mode == "editprofile") ? $lang['Edit_profile'] : $lang['Register'];
-
- //
- // Start processing for output
- //
- if ( $mode == "register" && !isset($HTTP_POST_VARS['agreed']) && !isset($HTTP_GET_VARS['agreed']) )
- {
- if( !isset($HTTP_POST_VARS['agreed']) && !isset($HTTP_GET_VARS['agreed']) )
- {
- //
- // Load agreement template since user has not yet
- // agreed to registration conditions/coppa
- //
- include($phpbb_root_path . 'includes/page_header.'.$phpEx);
-
- $template->set_filenames(array(
- "body" => "agreement.tpl",
- "jumpbox" => "jumpbox.tpl")
- );
-
- $jumpbox = make_jumpbox();
- $template->assign_vars(array(
- "L_GO" => $lang['Go'],
- "L_JUMP_TO" => $lang['Jump_to'],
- "L_SELECT_FORUM" => $lang['Select_forum'],
-
- "S_JUMPBOX_LIST" => $jumpbox,
- "S_JUMPBOX_ACTION" => append_sid("viewforum.$phpEx"))
- );
- $template->assign_var_from_handle("JUMPBOX", "jumpbox");
-
- $template->assign_vars(array(
- "COPPA" => $coppa,
- "REGISTRATION" => $lang['Registration'],
- "AGREEMENT" => $lang['Reg_agreement'],
- "AGREE_OVER_13" => $lang['Agree_over_13'],
- "AGREE_UNDER_13" => $lang['Agree_under_13'],
- "DO_NOT_AGREE" => $lang['Agree_not'],
-
- "U_AGREE_OVER13" => append_sid("profile.$phpEx?mode=register&amp;agreed=true"),
- "U_AGREE_UNDER13" => append_sid("profile.$phpEx?mode=register&amp;agreed=true&amp;coppa=true"))
- );
- $template->pparse("body");
-
- include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
- }
- }
- else if( isset($HTTP_POST_VARS['submit']) || isset($HTTP_POST_VARS['avatargallery']) || isset($HTTP_POST_VARS['submitavatar']) || isset($HTTP_POST_VARS['cancelavatar']) || $mode == "register" )
- {
- if( $mode == "editprofile" )
- {
- $user_id = intval($HTTP_POST_VARS['user_id']);
- $current_email = trim(strip_tags(htmlspecialchars(str_replace("&nbsp;", " ",$HTTP_POST_VARS['current_email']))));
- }
-
- $username = ( !empty($HTTP_POST_VARS['username']) ) ? trim(strip_tags(str_replace("&nbsp;", " ", $HTTP_POST_VARS['username']))) : "";
- $email = ( !empty($HTTP_POST_VARS['email']) ) ? trim(strip_tags(htmlspecialchars(str_replace("&nbsp;", " ",$HTTP_POST_VARS['email'])))) : "";
-
- $password_current = ( !empty($HTTP_POST_VARS['cur_password']) ) ? trim($HTTP_POST_VARS['cur_password']) : "";
- $password = ( !empty($HTTP_POST_VARS['new_password']) ) ? trim($HTTP_POST_VARS['new_password']) : "";
- $password_confirm = ( !empty($HTTP_POST_VARS['password_confirm']) ) ? trim($HTTP_POST_VARS['password_confirm']) : "";
-
- $icq = ( !empty($HTTP_POST_VARS['icq']) ) ? trim(strip_tags($HTTP_POST_VARS['icq'])) : "";
- $aim = ( !empty($HTTP_POST_VARS['aim']) ) ? trim(strip_tags($HTTP_POST_VARS['aim'])) : "";
- $msn = ( !empty($HTTP_POST_VARS['msn']) ) ? trim(strip_tags($HTTP_POST_VARS['msn'])) : "";
- $yim = ( !empty($HTTP_POST_VARS['yim']) ) ? trim(strip_tags($HTTP_POST_VARS['yim'])) : "";
-
- $website = ( !empty($HTTP_POST_VARS['website']) ) ? trim(strip_tags($HTTP_POST_VARS['website'])) : "";
- $location = ( !empty($HTTP_POST_VARS['location']) ) ? trim(strip_tags($HTTP_POST_VARS['location'])) : "";
- $occupation = ( !empty($HTTP_POST_VARS['occupation']) ) ? trim(strip_tags($HTTP_POST_VARS['occupation'])) : "";
- $interests = ( !empty($HTTP_POST_VARS['interests']) ) ? trim(strip_tags($HTTP_POST_VARS['interests'])) : "";
- $signature = ( !empty($HTTP_POST_VARS['signature']) ) ? trim(str_replace("<br />", "\n", $HTTP_POST_VARS['signature'])) : "";
-
- // Run some validation on the optional fields. These are pass-by-ref, so they'll be changed to
- // empty strings if they fail.
- validate_optional_fields($icq, $aim, $msn, $yim, $website, $location, $occupation, $interests, $signature);
-
- $viewemail = ( isset($HTTP_POST_VARS['viewemail']) ) ? ( ($HTTP_POST_VARS['viewemail']) ? TRUE : 0 ) : 0;
- $allowviewonline = ( isset($HTTP_POST_VARS['hideonline']) ) ? ( ($HTTP_POST_VARS['hideonline']) ? 0 : TRUE ) : TRUE;
- $notifyreply = ( isset($HTTP_POST_VARS['notifyreply']) ) ? ( ($HTTP_POST_VARS['notifyreply']) ? TRUE : 0 ) : 0;
- $notifypm = ( isset($HTTP_POST_VARS['notifypm']) ) ? ( ($HTTP_POST_VARS['notifypm']) ? TRUE : 0 ) : TRUE;
- $popuppm = ( isset($HTTP_POST_VARS['popup_pm']) ) ? ( ($HTTP_POST_VARS['popup_pm']) ? TRUE : 0 ) : TRUE;
-
- if( $mode == "register" )
- {
- $attachsig = ( isset($HTTP_POST_VARS['attachsig']) ) ? ( ($HTTP_POST_VARS['attachsig']) ? TRUE : 0 ) : $board_config['allow_sig'];
-
- $allowhtml = ( isset($HTTP_POST_VARS['allowhtml']) ) ? ( ($HTTP_POST_VARS['allowhtml']) ? TRUE : 0 ) : $board_config['allow_html'];
- $allowbbcode = ( isset($HTTP_POST_VARS['allowbbcode']) ) ? ( ($HTTP_POST_VARS['allowbbcode']) ? TRUE : 0 ) : $board_config['allow_bbcode'];
- $allowsmilies = ( isset($HTTP_POST_VARS['allowsmilies']) ) ? ( ($HTTP_POST_VARS['allowsmilies']) ? TRUE : 0 ) : $board_config['allow_smilies'];
- }
- else
- {
- $attachsig = ( isset($HTTP_POST_VARS['attachsig']) ) ? ( ($HTTP_POST_VARS['attachsig']) ? TRUE : 0 ) : 0;
-
- $allowhtml = ( isset($HTTP_POST_VARS['allowhtml']) ) ? ( ($HTTP_POST_VARS['allowhtml']) ? TRUE : 0 ) : $userdata['user_allowhtml'];
- $allowbbcode = ( isset($HTTP_POST_VARS['allowbbcode']) ) ? ( ($HTTP_POST_VARS['allowbbcode']) ? TRUE : 0 ) : $userdata['user_allowbbcode'];
- $allowsmilies = ( isset($HTTP_POST_VARS['allowsmilies']) ) ? ( ($HTTP_POST_VARS['allowsmilies']) ? TRUE : 0 ) : $userdata['user_allowsmiles'];
- }
-
- $user_style = ( isset($HTTP_POST_VARS['style']) ) ? intval($HTTP_POST_VARS['style']) : $board_config['default_style'];
-
- $user_lang = ( !empty($HTTP_POST_VARS['language']) ) ? $HTTP_POST_VARS['language'] : $board_config['default_lang'];
- $user_timezone = ( isset($HTTP_POST_VARS['timezone']) ) ? doubleval($HTTP_POST_VARS['timezone']) : $board_config['board_timezone'];
- $user_dateformat = ( !empty($HTTP_POST_VARS['dateformat']) ) ? trim($HTTP_POST_VARS['dateformat']) : $board_config['default_dateformat'];
-
- $user_avatar_local = ( isset($HTTP_POST_VARS['avatarselect']) && !empty($HTTP_POST_VARS['submitavatar']) && $board_config['allow_avatar_local'] ) ? $HTTP_POST_VARS['avatarselect'] : ( ( isset($HTTP_POST_VARS['avatarlocal']) ) ? $HTTP_POST_VARS['avatarlocal'] : "" );
-
- $user_avatar_remoteurl = ( !empty($HTTP_POST_VARS['avatarremoteurl']) ) ? trim($HTTP_POST_VARS['avatarremoteurl']) : "";
- $user_avatar_url = ( !empty($HTTP_POST_VARS['avatarurl']) ) ? trim($HTTP_POST_VARS['avatarurl']) : "";
- $user_avatar_loc = ( $HTTP_POST_FILES['avatar']['tmp_name'] != "none") ? $HTTP_POST_FILES['avatar']['tmp_name'] : "";
- $user_avatar_name = ( !empty($HTTP_POST_FILES['avatar']['name']) ) ? $HTTP_POST_FILES['avatar']['name'] : "";
- $user_avatar_size = ( !empty($HTTP_POST_FILES['avatar']['size']) ) ? $HTTP_POST_FILES['avatar']['size'] : 0;
- $user_avatar_filetype = ( !empty($HTTP_POST_FILES['avatar']['type']) ) ? $HTTP_POST_FILES['avatar']['type'] : "";
-
- $user_avatar = ( empty($user_avatar_loc) && $mode == "editprofile" ) ? $userdata['user_avatar'] : "";
- $user_avatar_type = ( empty($user_avatar_loc) && $mode == "editprofile" ) ? $userdata['user_avatar_type'] : "";
-
- if( isset($HTTP_POST_VARS['avatargallery']) || isset($HTTP_POST_VARS['submitavatar']) || isset($HTTP_POST_VARS['cancelavatar']) )
- {
- $username = stripslashes($username);
- $email = stripslashes($email);
- $password = "";
- $password_confirm = "";
-
- $icq = stripslashes($icq);
- $aim = stripslashes($aim);
- $msn = stripslashes($msn);
- $yim = stripslashes($yim);
-
- $website = stripslashes($website);
- $location = stripslashes($location);
- $occupation = stripslashes($occupation);
- $interests = stripslashes($interests);
- $signature = stripslashes($signature);
-
- $user_lang = stripslashes($user_lang);
- $user_dateformat = stripslashes($user_dateformat);
- $user_avatar = $user_avatar_local;
- $user_avatar_type = USER_AVATAR_GALLERY;
- }
- }
-
- if( isset($HTTP_POST_VARS['submit']) )
- {
- $error = FALSE;
-
- $passwd_sql = "";
- if($mode == "editprofile")
- {
- if( $user_id != $userdata['user_id'] )
- {
- $error = TRUE;
- $error_msg = $lang['Wrong_Profile'];
- }
- }
- else if( $mode == "register" )
- {
- $coppa = (!$HTTP_POST_VARS['coppa'] && !$HTTP_GET_VARS['coppa']) ? 0 : TRUE;
-
- if( empty($username) || empty($password) || empty($password_confirm) || empty($email) )
- {
- $error = TRUE;
- $error_msg = $lang['Fields_empty'];
- }
-
- }
-
- $passwd_sql = "";
- if( !empty($password) && !empty($password_confirm) )
- {
- // Awww, the user wants to change their password, isn't that cute..
- if( $password != $password_confirm )
- {
- $error = TRUE;
- $error_msg = $lang['Password_mismatch'];
- }
- else if( strlen($password) > 32 )
- {
- $error = TRUE;
- $error_msg = $lang['Password_long'];
- }
- else
- {
- if( $mode == "editprofile" )
- {
- $sql = "SELECT user_password
- FROM " . USERS_TABLE . "
- WHERE user_id = $user_id";
- if( $result = $db->sql_query($sql) )
- {
- $row = $db->sql_fetchrow($result);
-
- if( $row['user_password'] != md5($password_current) )
- {
- $error = TRUE;
- $error_msg = $lang['Current_password_mismatch'];
- }
- }
- else
- {
- message_die(GENERAL_ERROR, "Couldn't obtain user_password information.", "", __LINE__, __FILE__, $sql);
- }
- }
-
- if( !$error )
- {
- $password = md5($password);
- $passwd_sql = "user_password = '$password', ";
- }
- }
- }
- else if( ( $password && !$password_confirm ) || ( !$password && $password_confirm ) )
- {
- $error = TRUE;
- $error_msg = $lang['Password_mismatch'];
- }
-
- //
- // Do a ban check on this email address
- //
- if( $email != $userdata['user_email'] || $mode == "register" )
- {
- $result = validate_email($email);
- if( $result['error'] )
- {
- $email = $userdata['user_email'];
-
- $error = TRUE;
- if(isset($error_msg))
- {
- $error_msg .= "<br />";
- }
- $error_msg .= $result['error_msg'];
- }
-
- if ( $mode == "editprofile" )
- {
- $sql = "SELECT user_password
- FROM " . USERS_TABLE . "
- WHERE user_id = $user_id";
- if( $result = $db->sql_query($sql) )
- {
- $row = $db->sql_fetchrow($result);
-
- if( $row['user_password'] != md5($password_current) )
- {
- $email = $userdata['user_email'];
-
- $error = TRUE;
- $error_msg = $lang['Current_password_mismatch'];
- }
- }
- else
- {
- message_die(GENERAL_ERROR, "Couldn't obtain user_password information.", "", __LINE__, __FILE__, $sql);
- }
- }
- }
-
- $username_sql = "";
- if ( $board_config['allow_namechange'] || $mode == 'register' )
- {
- if ( $username != $userdata['username'] || $mode == 'register' )
- {
- $result = validate_username($username);
- if ( $result['error'] )
- {
- $error = TRUE;
- if(isset($error_msg))
- {
- $error_msg .= '<br />';
- }
- $error_msg .= $result['error_msg'];
- }
- else
- {
- $username_sql = "username = '" . str_replace("\'", "''", $username) . "', ";
- }
- }
- }
-
- if ( $signature != '' )
- {
- $sig_length_check = preg_replace("/(\[.*?)(=.*?)\]/is", "\\1]", stripslashes($signature));
- if( $allowhtml )
- {
- $sig_length_check = preg_replace("/(\<.*?)(=.*?)( .*?=.*?)?([ \/]?\>)/is", "\\1\\3\\4", $sig_length_check);
- }
-
- // Only create a new bbcode_uid when there was no uid yet.
- if($signature_bbcode_uid == '')
- {
- $signature_bbcode_uid = ( $allowbbcode ) ? make_bbcode_uid() : '';
- }
- $signature = prepare_message($signature, $allowhtml, $allowbbcode, $allowsmilies, $signature_bbcode_uid);
-
- if( strlen($sig_length_check) > $board_config['max_sig_chars'] )
- {
- $error = TRUE;
- if( isset($error_msg) )
- {
- $error_msg .= '<br />';
- }
- $error_msg .= $lang['Signature_too_long'];
- }
- }
-
- if ( $mode == 'register' )
- {
- //
- // The AUTO_INCREMENT field in MySQL v3.23 doesn't work
- // correctly when there is a row with -1 in that field
- // so we have to explicitly get the next user ID
- //
- $sql = "SELECT MAX(user_id) AS total
- FROM " . USERS_TABLE;
- if ( $result = $db->sql_query($sql) )
- {
- $row = $db->sql_fetchrow($result);
- $new_user_id = $row['total'] + 1;
-
- unset($result);
- unset($row);
- }
- else
- {
- message_die(GENERAL_ERROR, "Couldn't obtained next user_id information.", "", __LINE__, __FILE__, $sql);
- }
-
- $sql = "SELECT MAX(group_id) AS total
- FROM " . GROUPS_TABLE;
- if ( $result = $db->sql_query($sql) )
- {
- $row = $db->sql_fetchrow($result);
- $new_group_id = $row['total'] + 1;
-
- unset($result);
- unset($row);
- }
- else
- {
- message_die(GENERAL_ERROR, "Couldn't obtained next user_id information.", "", __LINE__, __FILE__, $sql);
- }
- }
-
- $avatar_sql = '';
- if ( isset($HTTP_POST_VARS['avatardel']) && $mode == 'editprofile' )
- {
- if ( $userdata['user_avatar_type'] == USER_AVATAR_UPLOAD && $userdata['user_avatar'] != "" )
- {
- if ( @file_exists('./' . $board_config['avatar_path'] . '/' . $userdata['user_avatar']) )
- {
- @unlink('./' . $board_config['avatar_path'] . '/' . $userdata['user_avatar']);
- }
- }
- $avatar_sql = ", user_avatar = '', user_avatar_type = " . USER_AVATAR_NONE;
- }
- else if ( ( $user_avatar_loc != "" || !empty($user_avatar_url) ) && $board_config['allow_avatar_upload'] && !$error )
- {
- //
- // Only allow one type of upload, either a
- // filename or a URL
- //
- if ( !empty($user_avatar_loc) && !empty($user_avatar_url) )
- {
- $error = TRUE;
- if( isset($error_msg) )
- {
- $error_msg .= '<br />';
- }
- $error_msg .= $lang['Only_one_avatar'];
- }
-
- if ( $user_avatar_loc != '' )
- {
- if ( file_exists($user_avatar_loc) && ereg('.jpg$|.jpeg$|.gif$|.png$', $user_avatar_name) )
- {
- if ( $user_avatar_size <= $board_config['avatar_filesize'] && $avatar_size > 0 )
- {
- $error_type = false;
-
- //
- // Opera appends the image name after the type, not big, not clever!
- //
- preg_match("'image\/[x\-]*([a-z]+)'", $user_avatar_filetype, $user_avatar_filetype);
- $user_avatar_filetype = $user_avatar_filetype[1];
-
- switch( $user_avatar_filetype )
- {
- case 'jpeg':
- case 'pjpeg':
- case 'jpg':
- $imgtype = '.jpg';
- break;
- case 'gif':
- $imgtype = '.gif';
- break;
- case 'png':
- $imgtype = '.png';
- break;
- default:
- $error = true;
- $error_msg = (!empty($error_msg)) ? $error_msg . "<br />" . $lang['Avatar_filetype'] : $lang['Avatar_filetype'];
- break;
- }
-
- if( !$error )
- {
- list($width, $height) = @getimagesize($user_avatar_loc);
-
- if( $width <= $board_config['avatar_max_width'] && $height <= $board_config['avatar_max_height'] )
- {
- $user_id = ( $mode == 'register' ) ? $new_user_id : $userdata['user_id'];
-
- $avatar_filename = $user_id . $imgtype;
-
- if( $mode == 'editprofile' && $userdata['user_avatar_type'] == USER_AVATAR_UPLOAD && $userdata['user_avatar'] != '' )
- {
- if( @file_exists('./' . $board_config['avatar_path'] . '/' . $userdata['user_avatar']) )
- {
- @unlink('./' . $board_config['avatar_path'] . '/'. $userdata['user_avatar']);
- }
- }
- @copy($user_avatar_loc, './' . $board_config['avatar_path'] . "/$avatar_filename");
-
- $avatar_sql = ", user_avatar = '$avatar_filename', user_avatar_type = " . USER_AVATAR_UPLOAD;
- }
- else
- {
- $l_avatar_size = sprintf($lang['Avatar_imagesize'], $board_config['avatar_max_width'], $board_config['avatar_max_height']);
-
- $error = true;
- $error_msg = ( !empty($error_msg) ) ? $error_msg . '<br />' . $l_avatar_size : $l_avatar_size;
- }
- }
- }
- else
- {
- $l_avatar_size = sprintf($lang['Avatar_filesize'], round($board_config['avatar_filesize'] / 1024));
-
- $error = true;
- $error_msg = ( !empty($error_msg) ) ? $error_msg . '<br />' . $l_avatar_size : $l_avatar_size;
- }
- }
- else
- {
- $error = true;
- $error_msg = ( !empty($error_msg) ) ? $error_msg . '<br />' . $lang['Avatar_filetype'] : $lang['Avatar_filetype'];
- }
- }
- else if ( !empty($user_avatar_url) )
- {
- //
- // First check what port we should connect
- // to, look for a :[xxxx]/ or, if that doesn't
- // exist assume port 80 (http)
- //
- preg_match('/^(http:\/\/)?([\w\-\.]+)\:?([0-9]*)\/(.*)$/', $user_avatar_url, $url_ary);
-
- if ( !empty($url_ary[4]) )
- {
- $port = ( !empty($url_ary[3]) ) ? $url_ary[3] : 80;
-
- $fsock = @fsockopen($url_ary[2], $port, $errno, $errstr);
- if ( $fsock )
- {
- $base_get = '/' . $url_ary[4];
-
- //
- // Uses HTTP 1.1, could use HTTP 1.0 ...
- //
- @fputs($fsock, "GET $base_get HTTP/1.1\r\n");
- @fputs($fsock, "HOST: " . $url_ary[2] . "\r\n");
- @fputs($fsock, "Connection: close\r\n\r\n");
-
- unset($avatar_data);
- while( !@feof($fsock) )
- {
- $avatar_data .= @fread($fsock, $board_config['avatar_filesize']);
- }
- @fclose($fsock);
-
- if ( preg_match('/Content-Length\: ([0-9]+)[^\/ ][\s]+/i', $avatar_data, $file_data1) && preg_match('/Content-Type\: image\/[x\-]*([a-z]+)[\s]+/i', $avatar_data, $file_data2) )
- {
- $file_size = $file_data1[1];
- $file_type = $file_data2[1];
-
- switch( $file_type )
- {
- case 'jpeg':
- case 'pjpeg':
- case 'jpg':
- $imgtype = '.jpg';
- break;
- case 'gif':
- $imgtype = '.gif';
- break;
- case 'png':
- $imgtype = '.png';
- break;
- default:
- $error = true;
- $error_msg = (!empty($error_msg)) ? $error_msg . "<br />" . $lang['Avatar_filetype'] : $lang['Avatar_filetype'];
- break;
- }
-
- if ( !$error && $file_size > 0 && $file_size < $board_config['avatar_filesize'] )
- {
- $avatar_data = substr($avatar_data, strlen($avatar_data) - $file_size, $file_size);
-
- $tmp_filename = tempnam ('/tmp', $userdata['user_id'] . '-');
- $fptr = @fopen($tmp_filename, 'wb');
- $bytes_written = @fwrite($fptr, $avatar_data, $file_size);
- @fclose($fptr);
-
- if ( $bytes_written == $file_size )
- {
- list($width, $height) = @getimagesize($tmp_filename);
-
- if ( $width <= $board_config['avatar_max_width'] && $height <= $board_config['avatar_max_height'] )
- {
- $user_id = ( $mode == "register" ) ? $new_user_id : $userdata['user_id'];
-
- $avatar_filename = $user_id . $imgtype;
-
- if ( $mode == 'editprofile' && $userdata['user_avatar_type'] == USER_AVATAR_UPLOAD && $userdata['user_avatar'] != '')
- {
- if ( file_exists("./" . $board_config['avatar_path'] . '/' . $userdata['user_avatar']) )
- {
- @unlink("./" . $board_config['avatar_path'] . '/' . $userdata['user_avatar']);
- }
- }
- @copy($tmp_filename, "./" . $board_config['avatar_path'] . "/$avatar_filename");
- @unlink($tmp_filename);
-
- $avatar_sql = ", user_avatar = '$avatar_filename', user_avatar_type = " . USER_AVATAR_UPLOAD;
- }
- else
- {
- $l_avatar_size = sprintf($lang['Avatar_imagesize'], $board_config['avatar_max_width'], $board_config['avatar_max_height']);
-
- $error = true;
- $error_msg = ( !empty($error_msg) ) ? $error_msg . "<br />" . $l_avatar_size : $l_avatar_size;
- }
- }
- else
- {
- //
- // Error writing file
- //
- @unlink($tmp_filename);
- message_die(GENERAL_ERROR, 'Could not write avatar file to local storage. Please contact the board administrator with this message', '', __LINE__, __FILE__);
- }
- }
- }
- else
- {
- //
- // No data
- //
- $error = true;
- $error_msg = ( !empty($error_msg) ) ? $error_msg . '<br />' . $lang['File_no_data'] : $lang['File_no_data'];
- }
- }
- else
- {
- //
- // No connection
- //
- $error = true;
- $error_msg = ( !empty($error_msg) ) ? $error_msg . '<br />' . $lang['No_connection_URL'] : $lang['No_connection_URL'];
- }
- }
- else
- {
- $error = true;
- $error_msg = ( !empty($error_msg) ) ? $error_msg . '<br />' . $lang['Incomplete_URL'] : $lang['Incomplete_URL'];
- }
- }
- else if ( !empty($user_avatar_name) )
- {
- $l_avatar_size = sprintf($lang['Avatar_filesize'], round($board_config['avatar_filesize'] / 1024));
-
- $error = true;
- $error_msg = ( !empty($error_msg) ) ? $error_msg . '<br />' . $l_avatar_size : $l_avatar_size;
- }
- }
- else if ( $user_avatar_remoteurl != '' && $board_config['allow_avatar_remote'] && $avatar_sql == '' && !$error )
- {
- if ( !preg_match('#^http:\/\/#i', $user_avatar_remoteurl) )
- {
- $user_avatar_remoteurl = 'http://' . $user_avatar_remoteurl;
- }
-
- if ( preg_match('#^(http:\/\/[a-z0-9\-]+?\.([a-z0-9\-]+\.)*[a-z]+(:[0-9]+)*\/.*?\.(gif|jpg|jpeg|png)$)#is', $user_avatar_remoteurl) )
- {
- $avatar_sql = ", user_avatar = '" . str_replace("\'", "''", $user_avatar_remoteurl) . "', user_avatar_type = " . USER_AVATAR_REMOTE;
- }
- else
- {
- $error = true;
- $error_msg = ( !empty($error_msg) ) ? $error_msg . '<br />' . $lang['Wrong_remote_avatar_format'] : $lang['Wrong_remote_avatar_format'];
- }
- }
- else if ( $user_avatar_local != '' && $board_config['allow_avatar_local'] && $avatar_sql == '' && !$error )
- {
- $avatar_sql = ", user_avatar = '" . str_replace("\'", "''", $user_avatar_local) . "', user_avatar_type = " . USER_AVATAR_GALLERY;
- }
-
- if ( !$error )
- {
- if ( $mode == 'editprofile' )
- {
- if ( $email != $current_email && ( $board_config['require_activation'] == USER_ACTIVATION_SELF || $board_config['require_activation'] == USER_ACTIVATION_ADMIN ) && $userdata['user_level'] != ADMIN )
- {
- $user_active = 0;
- $user_actkey = gen_rand_string(true);
-
- //
- // The user is inactive, remove their session forcing them to login again before they can post.
- //
- if( $userdata['session_logged_in'] )
- {
- session_end($userdata['session_id'], $userdata['user_id']);
- }
- }
- else
- {
- $user_active = 1;
- $user_actkey = '';
- }
-
- $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_sig_bbcode_uid = '$signature_bbcode_uid', user_viewemail = $viewemail, user_aim = '" . str_replace("\'", "''", $aim) . "', user_yim = '" . str_replace("\'", "''", $yim) . "', user_msnm = '" . str_replace("\'", "''", $msn) . "', user_attachsig = $attachsig, user_allowsmile = $allowsmilies, user_allowhtml = $allowhtml, user_allowbbcode = $allowbbcode, user_allow_viewonline = $allowviewonline, user_notify = $notifyreply, user_notify_pm = $notifypm, user_popup_pm = $popuppm, user_timezone = $user_timezone, user_dateformat = '" . str_replace("\'", "''", $user_dateformat) . "', user_lang = '" . str_replace("\'", "''", $user_lang) . "', user_style = $user_style, user_active = $user_active, user_actkey = '" . str_replace("\'", "''", $user_actkey) . "'" . $avatar_sql . "
- WHERE user_id = $user_id";
- if ( $result = $db->sql_query($sql) )
- {
- if ( $user_active == 0 )
- {
- //
- // The users account has been deactivated, send them an email with a new activation key
- //
- include($phpbb_root_path . 'includes/emailer.'.$phpEx);
- $emailer = new emailer($board_config['smtp_delivery']);
-
- $email_headers = "From: " . $board_config['board_email'] . "\nReturn-Path: " . $board_config['board_email'] . "\r\n";
-
- $emailer->use_template('user_activate', stripslashes($user_lang));
- $emailer->email_address($email);
- $emailer->set_subject();//$lang['Reactivate']
- $emailer->extra_headers($email_headers);
-
- $emailer->assign_vars(array(
- "SITENAME" => $board_config['sitename'],
- "USERNAME" => $username,
- "EMAIL_SIG" => str_replace("<br />", "\n", "-- \n" . $board_config['board_email_sig']),
-
- "U_ACTIVATE" => $server_url . "?mode=activate&act_key=$user_actkey")
- );
- $emailer->send();
- $emailer->reset();
-
- $message = $lang['Profile_updated_inactive'] . '<br /><br />' . sprintf($lang['Click_return_index'], '<a href="' . append_sid("index.$phpEx") . '">', '</a>');
- }
- else
- {
- $message = $lang['Profile_updated'] . '<br /><br />' . sprintf($lang['Click_return_index'], '<a href="' . append_sid("index.$phpEx") . '">', '</a>');
- }
-
- $template->assign_vars(array(
- "META" => '<meta http-equiv="refresh" content="5;url=' . append_sid("index.$phpEx") . '">')
- );
-
- message_die(GENERAL_MESSAGE, $message);
- }
- else
- {
- message_die(GENERAL_ERROR, "Could not update users table", "", __LINE__, __FILE__, $sql);
- }
- }
- else
- {
- //
- // Get current date
- //
- $sql = "INSERT INTO " . USERS_TABLE . " (user_id, username, user_regdate, user_password, user_email, user_icq, user_website, user_occ, user_from, user_interests, user_sig, user_sig_bbcode_uid, user_avatar, user_viewemail, user_aim, user_yim, user_msnm, user_attachsig, user_allowsmile, user_allowhtml, user_allowbbcode, user_allow_viewonline, user_notify, user_notify_pm, user_popup_pm, user_timezone, user_dateformat, user_lang, user_style, user_level, user_allow_pm, user_active, user_actkey)
- VALUES ($new_user_id, '" . str_replace("\'", "''", $username) . "', " . time() . ", '" . str_replace("\'", "''", $password) . "', '" . str_replace("\'", "''", $email) . "', '" . str_replace("\'", "''", $icq) . "', '" . str_replace("\'", "''", $website) . "', '" . str_replace("\'", "''", $occupation) . "', '" . str_replace("\'", "''", $location) . "', '" . str_replace("\'", "''", $interests) . "', '" . str_replace("\'", "''", $signature) . "', '$signature_bbcode_uid', '" . str_replace("\'", "''", $avatar_filename) . "', $viewemail, '" . str_replace("\'", "''", $aim) . "', '" . str_replace("\'", "''", $yim) . "', '" . str_replace("\'", "''", $msn) . "', $attachsig, $allowsmilies, $allowhtml, $allowbbcode, $allowviewonline, $notifyreply, $notifypm, $popuppm, $user_timezone, '" . str_replace("\'", "''", $user_dateformat) . "', '" . str_replace("\'", "''", $user_lang) . "', $user_style, 0, 1, ";
-
- if ( $board_config['require_activation'] ==USER_ACTIVATION_SELF || $board_config['require_activation'] == USER_ACTIVATION_ADMIN || $coppa == 1)
- {
- $user_actkey = gen_rand_string(true);
- $sql .= "0, '" . str_replace("\'", "''", $user_actkey) . "')";
- }
- else
- {
- $sql .= "1, '')";
- }
-
- if ( $result = $db->sql_query($sql, BEGIN_TRANSACTION) )
- {
- $sql = "INSERT INTO " . GROUPS_TABLE . " (group_id, group_name, group_description, group_single_user, group_moderator)
- VALUES ($new_group_id, '', 'Personal User', 1, 0)";
- if ( $result = $db->sql_query($sql) )
- {
- $sql = "INSERT INTO " . USER_GROUP_TABLE . " (user_id, group_id, user_pending)
- VALUES ($new_user_id, $new_group_id, 0)";
- if ( $result = $db->sql_query($sql, END_TRANSACTION) )
- {
- if ( $coppa )
- {
- $message = $lang['COPPA'];
- $email_template = "coppa_welcome_inactive";
- }
- else if ( $board_config['require_activation'] == USER_ACTIVATION_SELF )
- {
- $message = $lang['Account_inactive'];
- $email_template = "user_welcome_inactive";
- }
- else if ( $board_config['require_activation'] == USER_ACTIVATION_ADMIN )
- {
- $message = $lang['Account_inactive_admin'];
- $email_template = "admin_welcome_inactive";
- }
- else
- {
- $message = $lang['Account_added'];
- $email_template = "user_welcome";
- }
-
- include($phpbb_root_path . 'includes/emailer.'.$phpEx);
- $emailer = new emailer($board_config['smtp_delivery']);
-
- $email_headers = "From: " . $board_config['board_email'] . "\nReturn-Path: " . $board_config['board_email'] . "\r\n";
-
- $emailer->use_template($email_template, stripslashes($user_lang));
- $emailer->email_address($email);
- $emailer->set_subject();//sprintf($lang['Welcome_subject'], $board_config['sitename'])
- $emailer->extra_headers($email_headers);
-
- if( $coppa )
- {
- $emailer->assign_vars(array(
- "SITENAME" => $board_config['sitename'],
- "WELCOME_MSG" => sprintf($lang['Welcome_subject'], $board_config['sitename']),
- "USERNAME" => $username,
- "PASSWORD" => $password_confirm,
- "EMAIL_SIG" => str_replace("<br />", "\n", "-- \n" . $board_config['board_email_sig']),
-
- "U_ACTIVATE" => $server_url . "?mode=activate&act_key=$user_actkey",
-
- "FAX_INFO" => $board_config['coppa_fax'],
- "MAIL_INFO" => $board_config['coppa_mail'],
- "EMAIL_ADDRESS" => $email,
- "ICQ" => $icq,
- "AIM" => $aim,
- "YIM" => $yim,
- "MSN" => $msn,
- "WEB_SITE" => $website,
- "FROM" => $location,
- "OCC" => $occupation,
- "INTERESTS" => $interests,
- "SITENAME" => $board_config['sitename']));
- }
- else
- {
- $emailer->assign_vars(array(
- "SITENAME" => $board_config['sitename'],
- "WELCOME_MSG" => sprintf($lang['Welcome_subject'], $board_config['sitename']),
- "USERNAME" => $username,
- "PASSWORD" => $password_confirm,
- "EMAIL_SIG" => str_replace("<br />", "\n", "-- \n" . $board_config['board_email_sig']),
-
- "U_ACTIVATE" => $server_url . "?mode=activate&act_key=$user_actkey")
- );
- }
-
- $emailer->send();
- $emailer->reset();
-
- if( $board_config['require_activation'] == USER_ACTIVATION_ADMIN )
- {
- $emailer->use_template("admin_activate", stripslashes($user_lang));
- $emailer->email_address($board_config['board_email']);
- $emailer->set_subject(); //$lang['New_account_subject']
- $emailer->extra_headers($email_headers);
-
- $emailer->assign_vars(array(
- "USERNAME" => $username,
- "EMAIL_SIG" => str_replace("<br />", "\n", "-- \n" . $board_config['board_email_sig']),
-
- "U_ACTIVATE" => $server_url . "?mode=activate&act_key=$user_actkey")
- );
- $emailer->send();
- $emailer->reset();
- }
-
- $message = $message . "<br /><br />" . sprintf($lang['Click_return_index'], "<a href=\"" . append_sid("index.$phpEx") . "\">", "</a>");
-
- message_die(GENERAL_MESSAGE, $message);
- }
- else
- {
- message_die(GENERAL_ERROR, "Couldn't insert data into user_group table", "", __LINE__, __FILE__, $sql);
- }
- }
- else
- {
- message_die(GENERAL_ERROR, "Couldn't insert data into groups table", "", __LINE__, __FILE__, $sql);
- }
- }
- else
- {
- message_die(GENERAL_ERROR, "Couldn't insert data into users table", "", __LINE__, __FILE__, $sql);
- }
- } // if mode == register
- }
-
- //
- // If an error occured we need to stripslashes on returned data
- //
- $username = stripslashes($username);
- $email = stripslashes($email);
- $password = "";
- $password_confirm = "";
-
- $icq = stripslashes($icq);
- $aim = stripslashes($aim);
- $msn = stripslashes($msn);
- $yim = stripslashes($yim);
-
- $website = stripslashes($website);
- $location = stripslashes($location);
- $occupation = stripslashes($occupation);
- $interests = stripslashes($interests);
- $signature = stripslashes($signature);
-
- $user_lang = stripslashes($user_lang);
- $user_dateformat = stripslashes($user_dateformat);
-
- }
- else if( $mode == "editprofile" && !isset($HTTP_POST_VARS['avatargallery']) && !isset($HTTP_POST_VARS['submitavatar']) && !isset($HTTP_POST_VARS['cancelavatar']) )
- {
- $user_id = $userdata['user_id'];
- $username = $userdata['username'];
- $email = $userdata['user_email'];
- $password = "";
- $password_confirm = "";
-
- $icq = $userdata['user_icq'];
- $aim = $userdata['user_aim'];
- $msn = $userdata['user_msnm'];
- $yim = $userdata['user_yim'];
-
- $website = $userdata['user_website'];
- $location = $userdata['user_from'];
- $occupation = $userdata['user_occ'];
- $interests = $userdata['user_interests'];
- $signature_bbcode_uid = $userdata['user_sig_bbcode_uid'];
- $signature = ( $signature_bbcode_uid != "" ) ? preg_replace("/\:(([a-z0-9]:)?)$signature_bbcode_uid/si", "", $userdata['user_sig']) : $userdata['user_sig'];
-
- $viewemail = $userdata['user_viewemail'];
- $notifypm = $userdata['user_notify_pm'];
- $popuppm = $userdata['user_popup_pm'];
- $notifyreply = $userdata['user_notify'];
- $attachsig = $userdata['user_attachsig'];
- $allowhtml = $userdata['user_allowhtml'];
- $allowbbcode = $userdata['user_allowbbcode'];
- $allowsmilies = $userdata['user_allowsmile'];
- $allowviewonline = $userdata['user_allow_viewonline'];
-
- $user_avatar = ( $userdata['user_allowavatar'] ) ? $userdata['user_avatar'] : "";
- $user_avatar_type = ( $userdata['user_allowavatar'] ) ? $userdata['user_avatar_type'] : USER_AVATAR_NONE;
-
- $user_style = $userdata['user_style'];
- $user_lang = $userdata['user_lang'];
- $user_timezone = $userdata['user_timezone'];
- $user_dateformat = $userdata['user_dateformat'];
- }
-
- if( isset($HTTP_POST_VARS['avatargallery']) )
- {
- if($mode == "editprofile")
- {
- if( $user_id != $userdata['user_id'] )
- {
- $error = TRUE;
- $error_msg = $lang['Wrong_Profile'];
- }
- }
-
- if( !$error )
- {
- include($phpbb_root_path . 'includes/page_header.'.$phpEx);
-
- $template->set_filenames(array(
- "body" => "profile_avatar_gallery.tpl",
- "jumpbox" => "jumpbox.tpl")
- );
-
- $jumpbox = make_jumpbox();
- $template->assign_vars(array(
- "L_GO" => $lang['Go'],
- "L_JUMP_TO" => $lang['Jump_to'],
- "L_SELECT_FORUM" => $lang['Select_forum'],
-
- "S_JUMPBOX_LIST" => $jumpbox,
- "S_JUMPBOX_ACTION" => append_sid("viewforum.$phpEx"))
- );
- $template->assign_var_from_handle("JUMPBOX", "jumpbox");
-
- $dir = @opendir($board_config['avatar_gallery_path']);
-
- $avatar_images = array();
- while( $file = @readdir($dir) )
- {
- if( $file != "." && $file != ".." && !is_file($board_config['avatar_gallery_path'] . "/" . $file) && !is_link($board_config['avatar_gallery_path'] . "/" . $file) )
- {
- $sub_dir = @opendir($board_config['avatar_gallery_path'] . "/" . $file);
-
- $avatar_row_count = 0;
- $avatar_col_count = 0;
- while( $sub_file = @readdir($sub_dir) )
- {
- if( preg_match("/(\.gif$|\.png$|\.jpg|\.jpeg)$/is", $sub_file) )
- {
- $avatar_images[$file][$avatar_row_count][$avatar_col_count] = $file . "/" . $sub_file;
-
- $avatar_col_count++;
- if( $avatar_col_count == 5 )
- {
- $avatar_row_count++;
- $avatar_col_count = 0;
- }
- }
- }
- }
- }
-
- @closedir($dir);
-
- if( isset($HTTP_POST_VARS['avatarcategory']) )
- {
- $category = $HTTP_POST_VARS['avatarcategory'];
- }
- else
- {
- list($category, ) = each($avatar_images);
- }
- @reset($avatar_images);
-
- $s_categories = "";
- while( list($key) = each($avatar_images) )
- {
- $selected = ( $key == $category ) ? "selected=\"selected\"" : "";
- if( count($avatar_images[$key]) )
- {
- $s_categories .= '<option value="' . $key . '"' . $selected . '>' . ucfirst($key) . '</option>';
- }
- }
-
- $s_colspan = 0;
- for($i = 0; $i < count($avatar_images[$category]); $i++)
- {
- $template->assign_block_vars("avatar_row", array());
-
- $s_colspan = max($s_colspan, count($avatar_images[$category][$i]));
-
- for($j = 0; $j < count($avatar_images[$category][$i]); $j++)
- {
- $template->assign_block_vars("avatar_row.avatar_column", array(
- "AVATAR_IMAGE" => $board_config['avatar_gallery_path'] . "/" . $avatar_images[$category][$i][$j])
- );
-
- $template->assign_block_vars("avatar_row.avatar_option_column", array(
- "S_OPTIONS_AVATAR" => $avatar_images[$category][$i][$j])
- );
- }
- }
-
- $coppa = ( ( !$HTTP_POST_VARS['coppa'] && !$HTTP_GET_VARS['coppa'] ) || $mode == "register") ? 0 : TRUE;
-
- $s_hidden_vars = '<input type="hidden" name="agreed" value="true" /><input type="hidden" name="coppa" value="' . $coppa . '" /><input type="hidden" name="user_id" value="' . $userdata['user_id'] . '" /><input type="hidden" name="current_email" value="' . $userdata['user_email'] . '" />';
- $s_hidden_vars .= '<input type="hidden" name="user_id" value="' . $user_id . '" />';
- $s_hidden_vars .= '<input type="hidden" name="username" value="' . str_replace("\"", "&quot;", $username) . '" />';
- $s_hidden_vars .= '<input type="hidden" name="email" value="' . str_replace("\"", "&quot;", $email) . '" />';
- $s_hidden_vars .= '<input type="hidden" name="icq" value="' . str_replace("\"", "&quot;", $icq) . '" />';
- $s_hidden_vars .= '<input type="hidden" name="aim" value="' . str_replace("\"", "&quot;", $aim) . '" />';
- $s_hidden_vars .= '<input type="hidden" name="msn" value="' . str_replace("\"", "&quot;", $msn) . '" />';
- $s_hidden_vars .= '<input type="hidden" name="yim" value="' . str_replace("\"", "&quot;", $yim) . '" />';
- $s_hidden_vars .= '<input type="hidden" name="website" value="' . str_replace("\"", "&quot;", $website) . '" />';
- $s_hidden_vars .= '<input type="hidden" name="location" value="' . str_replace("\"", "&quot;", $location) . '" />';
- $s_hidden_vars .= '<input type="hidden" name="occupation" value="' . str_replace("\"", "&quot;", $occupation) . '" />';
- $s_hidden_vars .= '<input type="hidden" name="interests" value="' . str_replace("\"", "&quot;", $interests) . '" />';
- $s_hidden_vars .= '<input type="hidden" name="signature" value="' . str_replace("\"", "&quot;", $signature) . '" />';
- $s_hidden_vars .= '<input type="hidden" name="viewemail" value="' . $viewemail . '" />';
- $s_hidden_vars .= '<input type="hidden" name="notifypm" value="' . $notifypm . '" />';
- $s_hidden_vars .= '<input type="hidden" name="popup_pm" value="' . $popuppm . '" />';
- $s_hidden_vars .= '<input type="hidden" name="notifyreply" value="' . $notifyreply . '" />';
- $s_hidden_vars .= '<input type="hidden" name="attachsig" value="' . $attachsig . '" />';
- $s_hidden_vars .= '<input type="hidden" name="allowhtml" value="' . $allowhtml . '" />';
- $s_hidden_vars .= '<input type="hidden" name="allowbbcode" value="' . $allowbbcode . '" />';
- $s_hidden_vars .= '<input type="hidden" name="allowsmilies" value="' . $allowsmilies . '" />';
- $s_hidden_vars .= '<input type="hidden" name="hideonline" value="' . !$allowviewonline . '" />';
- $s_hidden_vars .= '<input type="hidden" name="style" value="' . $user_style . '" />';
- $s_hidden_vars .= '<input type="hidden" name="language" value="' . $user_lang . '" />';
- $s_hidden_vars .= '<input type="hidden" name="timezone" value="' . $user_timezone . '" />';
- $s_hidden_vars .= '<input type="hidden" name="dateformat" value="' . str_replace("\"", "&quot;", $user_dateformat) . '" />';
-
- $template->assign_vars(array(
- "L_AVATAR_GALLERY" => $lang['Avatar_gallery'],
- "L_SELECT_AVATAR" => $lang['Select_avatar'],
- "L_RETURN_PROFILE" => $lang['Return_profile'],
- "L_CATEGORY" => $lang['Select_category'],
-
- "S_OPTIONS_CATEGORIES" => $s_categories,
- "S_COLSPAN" => $s_colspan,
- "S_PROFILE_ACTION" => append_sid("profile.$phpEx?mode=$mode"),
- "S_HIDDEN_FIELDS" => $s_hidden_vars)
- );
-
- }
- }
- else
- {
- if( $mode == "editprofile" )
- {
- if( $user_id != $userdata['user_id'] )
- {
- $error = TRUE;
- $error_msg = $lang['Wrong_Profile'];
- }
- }
-
- if( !isset($coppa) )
- {
- $coppa = FALSE;
- }
-
- if( !isset($user_template) )
- {
- $selected_template = $board_config['system_template'];
- }
-
- $signature = preg_replace("/\:[0-9a-z\:]*?\]/si", "]", $signature);
-
- $avatar_img = "";
- if( $user_avatar_type )
- {
- switch( $user_avatar_type )
- {
- case USER_AVATAR_UPLOAD:
- $avatar_img = ( $board_config['allow_avatar_upload'] ) ? '<img src="' . $board_config['avatar_path'] . "/" . $user_avatar . '" alt="" />' : '';
- break;
- case USER_AVATAR_REMOTE:
- $avatar_img = ( $board_config['allow_avatar_remote'] ) ? '<img src="' . $user_avatar . '" alt="" />' : '';
- break;
- case USER_AVATAR_GALLERY:
- $avatar_img = ( $board_config['allow_avatar_local'] ) ? '<img src="' . $board_config['avatar_gallery_path'] . "/" . $user_avatar . '" alt="" />' : '';
- break;
- }
- }
-
- $s_hidden_fields = '<input type="hidden" name="mode" value="' . $mode . '" /><input type="hidden" name="agreed" value="true" /><input type="hidden" name="coppa" value="' . $coppa . '" />';
- if( $mode == "editprofile" )
- {
- $s_hidden_fields .= '<input type="hidden" name="user_id" value="' . $userdata['user_id'] . '" />';
- //
- // Send the users current email address. If they change it, and account activation is turned on
- // the user account will be disabled and the user will have to reactivate their account.
- //
- $s_hidden_fields .= '<input type="hidden" name="current_email" value="' . $userdata['user_email'] . '" />';
- }
-
- if( !empty($user_avatar_local) )
- {
- $s_hidden_fields .= '<input type="hidden" name="avatarlocal" value="' . $user_avatar_local . '" />';
- }
-
- $html_status = ( $userdata['user_allowhtml'] && $board_config['allow_html'] ) ? $lang['HTML_is_ON'] : $lang['HTML_is_OFF'];
- $bbcode_status = ( $userdata['user_allowbbcode'] && $board_config['allow_bbcode'] ) ? $lang['BBCode_is_ON'] : $lang['BBCode_is_OFF'];
- $smilies_status = ( $userdata['user_allowsmile'] && $board_config['allow_smilies'] ) ? $lang['Smilies_are_ON'] : $lang['Smilies_are_OFF'];
-
- include($phpbb_root_path . 'includes/page_header.'.$phpEx);
-
- if( $error )
- {
- $template->set_filenames(array(
- "reg_header" => "error_body.tpl")
- );
- $template->assign_vars(array(
- "ERROR_MESSAGE" => $error_msg)
- );
- $template->assign_var_from_handle("ERROR_BOX", "reg_header");
- }
-
- $template->set_filenames(array(
- "body" => "profile_add_body.tpl",
- "jumpbox" => "jumpbox.tpl")
- );
-
- $jumpbox = make_jumpbox();
- $template->assign_vars(array(
- "L_GO" => $lang['Go'],
- "L_JUMP_TO" => $lang['Jump_to'],
- "L_SELECT_FORUM" => $lang['Select_forum'],
-
- "S_JUMPBOX_LIST" => $jumpbox,
- "S_JUMPBOX_ACTION" => append_sid("viewforum.$phpEx"))
- );
- $template->assign_var_from_handle("JUMPBOX", "jumpbox");
-
- if( $mode == "editprofile" )
- {
- $template->assign_block_vars("edit_profile", array());
- }
-
- //
- // Let's do an overall check for settings/versions which would prevent
- // us from doing file uploads....
- //
- if( phpversion() >= '4.0.0' )
- {
- $file_uploads = ini_get('file_uploads');
- }
- else
- {
- $file_uploads = get_cfg_var('file_uploads');
- }
- if( ($file_uploads == 0 && !empty($file_uploads)) || (strtolower($file_uploads) == 'off')|| (phpversion() == '4.0.4pl1') || (!$board_config['allow_avatar_upload']) )
- {
- $form_enctype = '';
- }
- else
- {
- $form_enctype = 'enctype="multipart/form-data"';
- }
-
- $template->assign_vars(array(
- "USERNAME" => $username,
- "EMAIL" => $email,
- "YIM" => $yim,
- "ICQ" => $icq,
- "MSN" => $msn,
- "AIM" => $aim,
- "OCCUPATION" => $occupation,
- "INTERESTS" => $interests,
- "LOCATION" => $location,
- "WEBSITE" => $website,
- "SIGNATURE" => str_replace("<br />", "\n", $signature),
- "VIEW_EMAIL_YES" => ($viewemail) ? 'checked="checked"' : '',
- "VIEW_EMAIL_NO" => (!$viewemail) ? 'checked="checked"' : '',
- "HIDE_USER_YES" => (!$allowviewonline) ? 'checked="checked"' : '',
- "HIDE_USER_NO" => ($allowviewonline) ? 'checked="checked"' : '',
- "NOTIFY_PM_YES" => ($notifypm) ? 'checked="checked"' : '',
- "NOTIFY_PM_NO" => (!$notifypm) ? 'checked="checked"' : '',
- "POPUP_PM_YES" => ($popuppm) ? 'checked="checked"' : '',
- "POPUP_PM_NO" => (!$popuppm) ? 'checked="checked"' : '',
- "ALWAYS_ADD_SIGNATURE_YES" => ($attachsig) ? 'checked="checked"' : '',
- "ALWAYS_ADD_SIGNATURE_NO" => (!$attachsig) ? 'checked="checked"' : '',
- "NOTIFY_REPLY_YES" => ($notifyreply) ? 'checked="checked"' : '',
- "NOTIFY_REPLY_NO" => (!$notifyreply) ? 'checked="checked"' : '',
- "ALWAYS_ALLOW_BBCODE_YES" => ($allowbbcode) ? 'checked="checked"' : '',
- "ALWAYS_ALLOW_BBCODE_NO" => (!$allowbbcode) ? 'checked="checked"' : '',
- "ALWAYS_ALLOW_HTML_YES" => ($allowhtml) ? 'checked="checked"' : '',
- "ALWAYS_ALLOW_HTML_NO" => (!$allowhtml) ? 'checked="checked"' : '',
- "ALWAYS_ALLOW_SMILIES_YES" => ($allowsmilies) ? 'checked="checked"' : '',
- "ALWAYS_ALLOW_SMILIES_NO" => (!$allowsmilies) ? 'checked="checked"' : '',
- "ALLOW_AVATAR" => $board_config['allow_avatar_upload'],
- "AVATAR" => $avatar_img,
- "AVATAR_SIZE" => $board_config['avatar_filesize'],
- "LANGUAGE_SELECT" => language_select($user_lang, 'language'),
- "STYLE_SELECT" => style_select($user_style, 'style'),
- "TIMEZONE_SELECT" => tz_select($user_timezone, 'timezone'),
- "DATE_FORMAT" => $user_dateformat,
- "HTML_STATUS" => $html_status,
- "BBCODE_STATUS" => sprintf($bbcode_status, '<a href="' . append_sid("faq.$phpEx?mode=bbcode") . '" target="_phpbbcode">', '</a>'),
- "SMILIES_STATUS" => $smilies_status,
-
- "L_CURRENT_PASSWORD" => $lang['Current_password'],
- "L_NEW_PASSWORD" => ( $mode == "register" ) ? $lang['Password'] : $lang['New_password'],
- "L_CONFIRM_PASSWORD" => $lang['Confirm_password'],
- "L_CONFIRM_PASSWORD_EXPLAIN" => ($mode == "editprofile") ? $lang['Confirm_password_explain'] : "",
- "L_PASSWORD_IF_CHANGED" => ($mode == "editprofile") ? $lang['password_if_changed'] : "",
- "L_PASSWORD_CONFIRM_IF_CHANGED" => ($mode == "editprofile") ? $lang['password_confirm_if_changed'] : "",
- "L_SUBMIT" => $lang['Submit'],
- "L_RESET" => $lang['Reset'],
- "L_ICQ_NUMBER" => $lang['ICQ'],
- "L_MESSENGER" => $lang['MSNM'],
- "L_YAHOO" => $lang['YIM'],
- "L_WEBSITE" => $lang['Website'],
- "L_AIM" => $lang['AIM'],
- "L_LOCATION" => $lang['Location'],
- "L_OCCUPATION" => $lang['Occupation'],
- "L_BOARD_LANGUAGE" => $lang['Board_lang'],
- "L_BOARD_STYLE" => $lang['Board_style'],
- "L_TIMEZONE" => $lang['Timezone'],
- "L_DATE_FORMAT" => $lang['Date_format'],
- "L_DATE_FORMAT_EXPLAIN" => $lang['Date_format_explain'],
- "L_YES" => $lang['Yes'],
- "L_NO" => $lang['No'],
- "L_INTERESTS" => $lang['Interests'],
- "L_ALWAYS_ALLOW_SMILIES" => $lang['Always_smile'],
- "L_ALWAYS_ALLOW_BBCODE" => $lang['Always_bbcode'],
- "L_ALWAYS_ALLOW_HTML" => $lang['Always_html'],
- "L_HIDE_USER" => $lang['Hide_user'],
- "L_ALWAYS_ADD_SIGNATURE" => $lang['Always_add_sig'],
-
- "L_AVATAR_PANEL" => $lang['Avatar_panel'],
- "L_AVATAR_EXPLAIN" => sprintf($lang['Avatar_explain'], $board_config['avatar_max_width'], $board_config['avatar_max_height'], (round($board_config['avatar_filesize'] / 1024))),
- "L_UPLOAD_AVATAR_FILE" => $lang['Upload_Avatar_file'],
- "L_UPLOAD_AVATAR_URL" => $lang['Upload_Avatar_URL'],
- "L_UPLOAD_AVATAR_URL_EXPLAIN" => $lang['Upload_Avatar_URL_explain'],
- "L_AVATAR_GALLERY" => $lang['Select_from_gallery'],
- "L_SHOW_GALLERY" => $lang['View_avatar_gallery'],
- "L_LINK_REMOTE_AVATAR" => $lang['Link_remote_Avatar'],
- "L_LINK_REMOTE_AVATAR_EXPLAIN" => $lang['Link_remote_Avatar_explain'],
- "L_DELETE_AVATAR" => $lang['Delete_Image'],
- "L_CURRENT_IMAGE" => $lang['Current_Image'],
-
- "L_SIGNATURE" => $lang['Signature'],
- "L_SIGNATURE_EXPLAIN" => sprintf($lang['Signature_explain'], $board_config['max_sig_chars']),
- "L_NOTIFY_ON_REPLY" => $lang['Always_notify'],
- "L_NOTIFY_ON_REPLY_EXPLAIN" => $lang['Always_notify_explain'],
- "L_NOTIFY_ON_PRIVMSG" => $lang['Notify_on_privmsg'],
- "L_POPUP_ON_PRIVMSG" => $lang['Popup_on_privmsg'],
- "L_POPUP_ON_PRIVMSG_EXPLAIN" => $lang['Popup_on_privmsg_explain'],
- "L_PREFERENCES" => $lang['Preferences'],
- "L_PUBLIC_VIEW_EMAIL" => $lang['Public_view_email'],
- "L_ITEMS_REQUIRED" => $lang['Items_required'],
- "L_REGISTRATION_INFO" => $lang['Registration_info'],
- "L_PROFILE_INFO" => $lang['Profile_info'],
- "L_PROFILE_INFO_NOTICE" => $lang['Profile_info_warn'],
- "L_EMAIL_ADDRESS" => $lang['Email_address'],
-
- "S_ALLOW_AVATAR_UPLOAD" => $board_config['allow_avatar_upload'],
- "S_ALLOW_AVATAR_LOCAL" => $board_config['allow_avatar_local'],
- "S_ALLOW_AVATAR_REMOTE" => $board_config['allow_avatar_remote'],
- "S_HIDDEN_FIELDS" => $s_hidden_fields,
- "S_FORM_ENCTYPE" => $form_enctype,
- "S_PROFILE_ACTION" => append_sid("profile.$phpEx"))
- );
-
- //
- // This is another cheat using the block_var capability
- // of the templates to 'fake' an IF...ELSE...ENDIF solution
- // it works well :)
- //
- if ( $userdata['user_allowavatar'] && ( $board_config['allow_avatar_upload'] || $board_config['allow_avatar_local'] || $board_config['allow_avatar_remote'] ) )
- {
- $template->assign_block_vars("avatar_block", array() );
-
- if ( $board_config['allow_avatar_upload'] && file_exists("./" . $board_config['avatar_path']) )
- {
- if ( $form_enctype != '' )
- {
- $template->assign_block_vars("avatar_block.avatar_local_upload", array() );
- }
- $template->assign_block_vars("avatar_block.avatar_remote_upload", array() );
- }
-
- if ( $board_config['allow_avatar_remote'] )
- {
- $template->assign_block_vars("avatar_block.avatar_remote_link", array() );
- }
-
- if ( $board_config['allow_avatar_local'] && file_exists("./" . $board_config['avatar_gallery_path']) )
- {
- $template->assign_block_vars("avatar_block.avatar_local_gallery", array() );
- }
- }
- }
-
- $template->pparse("body");
-
- include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
+ include($phpbb_root_path . 'includes/usercp_register.'.$phpEx);
+ exit;
}
- else if ( $mode == "sendpassword" )
+ else if ( $mode == 'sendpassword' )
{
- if ( isset($HTTP_POST_VARS['submit']) )
- {
- $username = ( !empty($HTTP_POST_VARS['username']) ) ? trim(strip_tags($HTTP_POST_VARS['username'])) : "";
- $email = ( !empty($HTTP_POST_VARS['email']) ) ? trim(strip_tags(htmlspecialchars($HTTP_POST_VARS['email']))) : "";
-
- $sql = "SELECT user_id, username, user_email, user_active, user_lang
- FROM " . USERS_TABLE . "
- WHERE user_email = '" . str_replace("\'", "''", $email) . "'
- AND username = '" . str_replace("\'", "''", $username) . "'";
- if ( $result = $db->sql_query($sql) )
- {
- if ( $row = $db->sql_fetchrow($result) )
- {
- if ( $row['user_active'] == 0 )
- {
- message_die(GENERAL_MESSAGE, $lang['No_send_account_inactive']);
- }
-
- $username = $row['username'];
-
- $user_actkey = gen_rand_string(true);
- $user_password = gen_rand_string(false);
-
- $sql = "UPDATE " . USERS_TABLE . "
- SET user_newpasswd = '" .md5($user_password) . "', user_actkey = '$user_actkey'
- WHERE user_id = " . $row['user_id'];
- if ( !$result = $db->sql_query($sql) )
- {
- message_die(GENERAL_ERROR, "Couldn't update new password information", "", __LINE__, __FILE__, $sql);
- }
-
- include($phpbb_root_path . 'includes/emailer.'.$phpEx);
- $emailer = new emailer($board_config['smtp_delivery']);
-
- $email_headers = "From: " . $board_config['board_email'] . "\nReturn-Path: " . $board_config['board_email'] . "\r\n";
-
- $emailer->use_template("user_activate_passwd", $row['user_lang']);
- $emailer->email_address($row['user_email']);
- $emailer->set_subject();//$lang['New_password_activation']
- $emailer->extra_headers($email_headers);
-
- $emailer->assign_vars(array(
- "SITENAME" => $board_config['sitename'],
- "USERNAME" => $username,
- "PASSWORD" => $user_password,
- "EMAIL_SIG" => str_replace("<br />", "\n", "-- \n" . $board_config['board_email_sig']),
-
- "U_ACTIVATE" => $server_url . "?mode=activate&act_key=$user_actkey")
- );
- $emailer->send();
- $emailer->reset();
-
- $template->assign_vars(array(
- "META" => '<meta http-equiv="refresh" content="10;url=' . append_sid("index.$phpEx") . '">')
- );
-
- $message = $lang['Password_updated'] . "<br /><br />" . sprintf($lang['Click_return_index'], "<a href=\"" . append_sid("index.$phpEx") . "\">", "</a>");
-
- message_die(GENERAL_MESSAGE, $message);
- }
- else
- {
- message_die(GENERAL_MESSAGE, $lang['No_email_match']);
- }
- }
- else
- {
- message_die(GENERAL_ERROR, "Couldn't obtain user information for sendpassword", "", __LINE__, __FILE__, $sql);
- }
- }
- else
- {
- $username = "";
- $email = "";
- }
-
- //
- // Output basic page
- //
- include($phpbb_root_path . 'includes/page_header.'.$phpEx);
-
- $template->set_filenames(array(
- "body" => "profile_send_pass.tpl",
- "jumpbox" => "jumpbox.tpl")
- );
-
- $jumpbox = make_jumpbox();
- $template->assign_vars(array(
- "L_GO" => $lang['Go'],
- "L_JUMP_TO" => $lang['Jump_to'],
- "L_SELECT_FORUM" => $lang['Select_forum'],
-
- "S_JUMPBOX_LIST" => $jumpbox,
- "S_JUMPBOX_ACTION" => append_sid("viewforum.$phpEx"))
- );
- $template->assign_var_from_handle("JUMPBOX", "jumpbox");
-
- $template->assign_vars(array(
- "USERNAME" => $username,
- "EMAIL" => $email,
-
- "L_SEND_PASSWORD" => $lang['Send_password'],
- "L_ITEMS_REQUIRED" => $lang['Items_required'],
- "L_EMAIL_ADDRESS" => $lang['Email_address'],
- "L_SUBMIT" => $lang['Submit'],
- "L_RESET" => $lang['Reset'])
- );
-
- $template->pparse("body");
-
- include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
+ include($phpbb_root_path . 'includes/usercp_sendpasswd.'.$phpEx);
+ exit;
}
else if ( $mode == 'activate' )
{
- $sql = "SELECT user_id, user_email, user_newpasswd, user_lang
- FROM " . USERS_TABLE . "
- WHERE user_actkey = '" . str_replace("\'", "''", $HTTP_GET_VARS['act_key']) . "'";
- if ( $result = $db->sql_query($sql) )
- {
- if ( $row = $db->sql_fetchrow($result) )
- {
- $sql_update_pass = ( $row['user_newpasswd'] != "" ) ? ", user_password = '" . str_replace("\'", "''", $row['user_newpasswd']) . "', user_newpasswd = ''" : "";
-
- $sql = "UPDATE " . USERS_TABLE . "
- SET user_active = 1, user_actkey = ''" . $sql_update_pass . "
- WHERE user_id = " . $row['user_id'];
- if ( $result = $db->sql_query($sql) )
- {
- if ( $board_config['require_activation'] == USER_ACTIVATION_ADMIN && $sql_update_pass == '' )
- {
- include($phpbb_root_path . 'includes/emailer.'.$phpEx);
- $emailer = new emailer($board_config['smtp_delivery']);
-
- $email_headers = "From: " . $board_config['board_email'] . "\nReturn-Path: " . $board_config['board_email'] . "\r\n";
-
- $emailer->use_template("admin_welcome_activated", $row['user_lang']);
- $emailer->email_address($row['user_email']);
- $emailer->set_subject();//$lang['Account_activated_subject']
- $emailer->extra_headers($email_headers);
-
- $emailer->assign_vars(array(
- "SITENAME" => $board_config['sitename'],
- "USERNAME" => $username,
- "PASSWORD" => $password_confirm,
- "EMAIL_SIG" => str_replace("<br />", "\n", "-- \n" . $board_config['board_email_sig']))
- );
- $emailer->send();
- $emailer->reset();
-
- $template->assign_vars(array(
- "META" => '<meta http-equiv="refresh" content="10;url=' . append_sid("index.$phpEx") . '">')
- );
-
- message_die(GENERAL_MESSAGE, $lang['Account_active_admin']);
- }
- else
- {
- $template->assign_vars(array(
- "META" => '<meta http-equiv="refresh" content="10;url=' . append_sid("index.$phpEx") . '">')
- );
-
- $message = ( $sql_update_pass == "" ) ? $lang['Account_active'] : $lang['Password_activated'];
- message_die(GENERAL_MESSAGE, $message);
- }
- }
- else
- {
- message_die(GENERAL_ERROR, "Couldn't update users table", "", __LINE__, __FILE__, $sql_update);
- }
- }
- else
- {
- message_die(GENERAL_ERROR, $lang['Wrong_activation']); //wrongactiv
- }
- }
- else
- {
- message_die(GENERAL_ERROR, "Couldn't obtain user information", "", __LINE__, __FILE__, $sql);
- }
- break;
+ include($phpbb_root_path . 'includes/usercp_activate.'.$phpEx);
+ exit;
}
- else if ( $mode == "email" )
+ else if ( $mode == 'email' )
{
- if ( !empty($HTTP_GET_VARS[POST_USERS_URL]) || !empty($HTTP_POST_VARS[POST_USERS_URL]) )
- {
- $user_id = ( !empty($HTTP_GET_VARS[POST_USERS_URL]) ) ? $HTTP_GET_VARS[POST_USERS_URL] : $HTTP_POST_VARS[POST_USERS_URL];
- }
- else
- {
- message_die(GENERAL_MESSAGE, $lang['No_user_specified']);
- }
-
- if ( !$userdata['session_logged_in'] )
- {
- header("Location: " . append_sid("login.$phpEx?redirect=profile.$phpEx&mode=email&" . POST_USERS_URL . "=$user_id", true));
- exit;
- }
-
- $sql = "SELECT username, user_email, user_viewemail, user_lang
- FROM " . USERS_TABLE . "
- WHERE user_id = $user_id";
- if ( $result = $db->sql_query($sql) )
- {
- $row = $db->sql_fetchrow($result);
-
- $username = $row['username'];
- $user_email = $row['user_email'];
- $user_lang = $row['user_lang'];
-
- if ( $row['user_viewemail'] || $userdata['user_level'] == ADMIN )
- {
- if ( time() - $userdata['user_emailtime'] < $board_config['flood_interval'] )
- {
- message_die(GENERAL_MESSAGE, $lang['Flood_email_limit']);
- }
-
- if ( isset($HTTP_POST_VARS['submit']) )
- {
- $error = FALSE;
-
- if ( !empty($HTTP_POST_VARS['subject']) )
- {
- $subject = trim(strip_tags(stripslashes($HTTP_POST_VARS['subject'])));
- }
- else
- {
- $error = TRUE;
- $error_msg = ( !empty($error_msg) ) ? $error_msg . "<br />" . $lang['Empty_subject_email'] : $lang['Empty_subject_email'];
- }
-
- if ( !empty($HTTP_POST_VARS['message']) )
- {
- $message = trim(strip_tags(stripslashes($HTTP_POST_VARS['message'])));
- }
- else
- {
- $error = TRUE;
- $error_msg = ( !empty($error_msg) ) ? $error_msg . "<br />" . $lang['Empty_message_email'] : $lang['Empty_message_email'];
- }
-
- if ( !$error )
- {
- $sql = "UPDATE " . USERS_TABLE . "
- SET user_emailtime = " . time() . "
- WHERE user_id = " . $userdata['user_id'];
- if ( $result = $db->sql_query($sql) )
- {
- include($phpbb_root_path . 'includes/emailer.'.$phpEx);
- $emailer = new emailer($board_config['smtp_delivery']);
-
- $email_headers = "From: " . $userdata['user_email'] . "\n";
- if ( !empty($HTTP_POST_VARS['cc_email']) )
- {
- $email_headers .= "Cc: " . $userdata['user_email'] . "\n";
- }
- $email_headers .= "Return-Path: " . $userdata['user_email'] . "\n";
- $email_headers .= "X-AntiAbuse: Board servername - " . $server_name . "\n";
- $email_headers .= "X-AntiAbuse: User_id - " . $userdata['user_id'] . "\n";
- $email_headers .= "X-AntiAbuse: Username - " . $userdata['username'] . "\n";
- $email_headers .= "X-AntiAbuse: User IP - " . decode_ip($user_ip) . "\r\n";
-
- $emailer->use_template("profile_send_email", $user_lang);
- $emailer->email_address($user_email);
- $emailer->set_subject($subject);
- $emailer->extra_headers($email_headers);
-
- $emailer->assign_vars(array(
- "SITENAME" => $board_config['sitename'],
- "BOARD_EMAIL" => $board_config['board_email'],
- "FROM_USERNAME" => $userdata['username'],
- "TO_USERNAME" => $username,
- "MESSAGE" => $message)
- );
- $emailer->send();
- $emailer->reset();
-
- $template->assign_vars(array(
- "META" => '<meta http-equiv="refresh" content="5;url=' . append_sid("index.$phpEx") . '">')
- );
-
- $message = $lang['Email_sent'] . "<br /><br />" . sprintf($lang['Click_return_index'], '<a href="' . append_sid("index.$phpEx") . '">', '</a>');
-
- message_die(GENERAL_MESSAGE, $message);
- }
- else
- {
- message_die(GENERAL_ERROR, "Couldn't update last email time", "", __LINE__, __FILE__, $sql);
- }
- }
- }
-
- include($phpbb_root_path . 'includes/page_header.'.$phpEx);
-
- $template->set_filenames(array(
- "body" => "profile_send_email.tpl",
- "jumpbox" => "jumpbox.tpl")
- );
-
- $jumpbox = make_jumpbox();
- $template->assign_vars(array(
- "L_GO" => $lang['Go'],
- "L_JUMP_TO" => $lang['Jump_to'],
- "L_SELECT_FORUM" => $lang['Select_forum'],
-
- "S_JUMPBOX_LIST" => $jumpbox,
- "S_JUMPBOX_ACTION" => append_sid("viewforum.$phpEx"))
- );
- $template->assign_var_from_handle("JUMPBOX", "jumpbox");
-
- if ( $error )
- {
- $template->set_filenames(array(
- "reg_header" => "error_body.tpl")
- );
- $template->assign_vars(array(
- "ERROR_MESSAGE" => $error_msg)
- );
- $template->assign_var_from_handle("ERROR_BOX", "reg_header");
- }
-
- if ( $userdata['user_sig'] != "" )
- {
- $template->assign_block_vars("signature_checkbox", array());
- }
-
- $template->assign_vars(array(
- "USERNAME" => $username,
-
- "S_SIGNATURE_CHECKED" => ( $attach_sig ) ? 'checked="checked"' : '',
- "S_POST_ACTION" => append_sid("profile.$phpEx?&amp;mode=email&amp;" . POST_USERS_URL . "=$user_id"),
-
- "L_SEND_EMAIL_MSG" => $lang['Send_email_msg'],
- "L_RECIPIENT" => $lang['Recipient'],
- "L_SUBJECT" => $lang['Subject'],
- "L_MESSAGE_BODY" => $lang['Message_body'],
- "L_MESSAGE_BODY_DESC" => $lang['Email_message_desc'],
- "L_OPTIONS" => $lang['Options'],
- "L_CC_EMAIL" => $lang['CC_email'],
- "L_NOTIFY_ON_REPLY" => $lang['Notify'],
- "L_SPELLCHECK" => $lang['Spellcheck'],
- "L_SEND_EMAIL" => $lang['Send_email'])
- );
-
- $template->pparse("body");
-
- include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
- }
- else
- {
- message_die(GENERAL_MESSAGE, $lang['User_prevent_email']);
- }
- }
- else
- {
- message_die(GENERAL_MESSAGE, $lang['User_not_exist']);
- }
+ include($phpbb_root_path . 'includes/usercp_email.'.$phpEx);
+ exit;
}
}
+else
+{
+ header("Location: " . append_sid("index.$phpEx", true));
+ exit;
+}
-?>
+?> \ No newline at end of file
diff --git a/phpBB/search.php b/phpBB/search.php
index 89a9591b93..6613cef020 100644
--- a/phpBB/search.php
+++ b/phpBB/search.php
@@ -20,11 +20,12 @@
*
***************************************************************************/
+define('IN_PHPBB', true);
$phpbb_root_path = "./";
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
include($phpbb_root_path . 'includes/bbcode.'.$phpEx);
-include($phpbb_root_path . 'includes/search.'.$phpEx);
+include($phpbb_root_path . 'includes/functions_search.'.$phpEx);
//
// Start session management
diff --git a/phpBB/upgrade.php b/phpBB/upgrade.php
index 347d184f70..bda1c2d30b 100644
--- a/phpBB/upgrade.php
+++ b/phpBB/upgrade.php
@@ -19,6 +19,8 @@
*
***************************************************************************/
+define('IN_PHPBB', true);
+
if ( !defined('INSTALLING') )
{
error_reporting (E_ERROR | E_WARNING | E_PARSE); // This will NOT report uninitialized variables
@@ -47,7 +49,7 @@ $dbms = 'mysql';
include('includes/db.'.$phpEx);
include('includes/bbcode.'.$phpEx);
-include('includes/search.'.$phpEx);
+include('includes/functions_search.'.$phpEx);
set_time_limit(0); // Unlimited execution time
diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php
index ebf6d88b85..5620f7f167 100644
--- a/phpBB/viewforum.php
+++ b/phpBB/viewforum.php
@@ -20,6 +20,7 @@
*
***************************************************************************/
+define('IN_PHPBB', true);
$phpbb_root_path = "./";
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
diff --git a/phpBB/viewonline.php b/phpBB/viewonline.php
index b888165690..dd1f68f21a 100644
--- a/phpBB/viewonline.php
+++ b/phpBB/viewonline.php
@@ -20,6 +20,7 @@
*
***************************************************************************/
+define('IN_PHPBB', true);
$phpbb_root_path = "./";
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php
index 7f6a506b1c..995bf01a61 100644
--- a/phpBB/viewtopic.php
+++ b/phpBB/viewtopic.php
@@ -20,6 +20,7 @@
*
***************************************************************************/
+define('IN_PHPBB', true);
$phpbb_root_path = "./";
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);