function create_user($user_data, $check_values = true, $batch_process = false) { global $db, $config, $cache, $user, $lang; if ($check_values) { if (!function_exists('validate_username')) { include_once IP_ROOT_PATH . 'includes/functions_validate.' . PHP_EXT; } $error = false; // Validating username if (empty($user_data['username'])) { $error = true; $error_msg .= (isset($error_msg) ? '<br />' : '') . $lang['Fields_empty']; } else { $result = validate_username($user_data['username']); if ($result['error']) { $error = true; $error_msg .= (isset($error_msg) ? '<br />' : '') . $result['error_msg']; } } // Validating password if (empty($user_data['user_password'])) { $error = true; $error_msg .= (isset($error_msg) ? '<br />' : '') . $lang['Fields_empty']; } // Validating email if (empty($user_data['user_email'])) { $error = true; $error_msg .= (isset($error_msg) ? '<br />' : '') . $lang['Fields_empty']; } else { $result = validate_email($user_data['user_email']); if ($result['error']) { $error = true; $error_msg .= (isset($error_msg) ? '<br />' : '') . $result['error_msg']; } } if (!empty($error) && $batch_process) { return false; } if ($error) { message_die(GENERAL_MESSAGE, $error_msg); } } $sql = "SELECT MAX(user_id) AS total FROM " . USERS_TABLE; $db->sql_return_on_error(true); $result = $db->sql_query($sql); $db->sql_return_on_error(false); if (!$result) { if ($batch_process) { return false; } message_die(GENERAL_ERROR, 'Could not obtain next user_id information', '', __LINE__, __FILE__, $sql); } if (!($row = $db->sql_fetchrow($result))) { if ($batch_process) { return false; } message_die(GENERAL_ERROR, 'Could not obtain next user_id information', '', __LINE__, __FILE__, $sql); } $user_id = $row['total'] + 1; $user_data = array('user_id' => $user_id, 'username' => $user_data['username'], 'username_clean' => utf8_clean_string($user_data['username']), 'user_first_name' => !empty($user_data['user_first_name']) ? $user_data['user_first_name'] : '', 'user_last_name' => !empty($user_data['user_last_name']) ? $user_data['user_last_name'] : '', 'user_password' => phpbb_hash($user_data['user_password']), 'user_regdate' => !empty($user_data['user_regdate']) ? $user_data['user_regdate'] : time(), 'user_email' => $user_data['user_email'], 'user_email_hash' => phpbb_email_hash($user_data['user_email']), 'user_website' => !empty($user_data['user_website']) ? $user_data['user_website'] : '', 'user_phone' => !empty($user_data['user_phone']) ? $user_data['user_phone'] : '', 'user_timezone' => !empty($user_data['user_timezone']) ? $user_data['user_timezone'] : $config['board_timezone'], 'user_dateformat' => !empty($user_data['user_dateformat']) ? $user_data['user_dateformat'] : $config['default_dateformat'], 'user_lang' => !empty($user_data['user_lang']) ? $user_data['user_lang'] : $config['default_lang'], 'user_style' => !empty($user_data['user_style']) ? $user_data['user_style'] : $config['default_style'], 'user_level' => !empty($user_data['user_level']) ? $user_data['user_level'] : 0, 'user_rank' => !empty($user_data['user_rank']) ? $user_data['user_rank'] : 0, 'user_active' => !empty($user_data['user_active']) ? $user_data['user_active'] : 1, 'user_actkey' => !empty($user_data['user_actkey']) ? $user_data['user_actkey'] : 'user_actkey'); // PROFILE EDIT BRIDGE - BEGIN $target_profile_data = array('user_id' => $user_data['user_id'], 'username' => $user_data['username'], 'password' => $user_data['user_password'], 'email' => $user_data['user_email']); $this->profile_update($target_profile_data); unset($target_profile_data); // PROFILE EDIT BRIDGE - END $sql = "INSERT INTO " . USERS_TABLE . " " . $db->sql_build_insert_update($user_data, true); $db->sql_return_on_error(true); $db->sql_transaction('begin'); $result = $db->sql_query($sql); $db->sql_return_on_error(false); if (!$result) { if ($batch_process) { return false; } message_die(GENERAL_ERROR, 'Could not insert data into users table', '', __LINE__, __FILE__, $sql); } $sql = "INSERT INTO " . GROUPS_TABLE . " (group_name, group_description, group_single_user, group_moderator) VALUES ('', 'Personal User', 1, 0)"; $db->sql_return_on_error(true); $result = $db->sql_query($sql); $db->sql_return_on_error(false); if (!$result) { if ($batch_process) { return false; } message_die(GENERAL_ERROR, 'Could not insert data into groups table', '', __LINE__, __FILE__, $sql); } $group_id = $db->sql_nextid(); $sql = "INSERT INTO " . USER_GROUP_TABLE . " (user_id, group_id, user_pending) VALUES ({$user_id}, {$group_id}, 0)"; $db->sql_return_on_error(true); $result = $db->sql_query($sql); $db->sql_transaction('commit'); $db->sql_return_on_error(false); if (!$result) { if ($batch_process) { return false; } message_die(GENERAL_ERROR, 'Could not insert data into groups table', '', __LINE__, __FILE__, $sql); } if (!$batch_process) { board_stats(); } return true; }
$sql = "INSERT INTO " . USER_GROUP_TABLE . " (user_id, group_id, user_pending)\n\t\t\tVALUES ({$user_id}, {$group_id}, 0)"; $result = $db->sql_query($sql); $db->sql_transaction('commit'); // PROFILE EDIT BRIDGE - BEGIN $target_profile_data = array('user_id' => $user_id, 'username' => $username, 'password' => $clean_password, 'email' => $email); if (!class_exists('class_users')) { include_once IP_ROOT_PATH . 'includes/class_users.' . PHP_EXT; } if (empty($class_users)) { $class_users = new class_users(); } $class_users->profile_update($target_profile_data); unset($clean_password); unset($target_profile_data); // PROFILE EDIT BRIDGE - END board_stats(); $message = $lang['Account_added']; message_die(GENERAL_MESSAGE, $message); } } // End of submit if ($error) { // If an error occured we need to htmlspecialchars again username for output on returned data $username = htmlspecialchars($username); $new_password = ''; $password_confirm = ''; } // Default pages include_once IP_ROOT_PATH . 'includes/functions_selects.' . PHP_EXT; if ($error) { $template->set_filenames(array('reg_header' => 'error_body.tpl'));
function sync_post_stats(&$mode, &$post_data, &$forum_id, &$topic_id, &$post_id, &$user_id) { global $db, $cache, $config, $lang; if (!function_exists('update_user_color') || !function_exists('update_user_posts_details')) { include IP_ROOT_PATH . 'includes/functions_groups.' . PHP_EXT; } $decrease_counter = $mode == 'delete' ? true : false; $sign = $mode == 'delete' ? '- 1' : '+ 1'; $forum_update_sql = "forum_posts = forum_posts {$sign}"; $topic_update_sql = ''; if ($mode == 'delete') { if ($post_data['last_post']) { if ($post_data['first_post']) { $forum_update_sql .= ', forum_topics = forum_topics - 1'; } else { $topic_update_sql .= 'topic_replies = topic_replies - 1'; $topic_data = $this->get_first_last_post_id($topic_id); if (!empty($topic_data['last_post_id'])) { $topic_update_sql .= ', topic_last_post_id = ' . $topic_data['last_post_id']; } } if ($post_data['last_topic']) { $last_post_id = $this->get_forum_last_post_id($forum_id); if (!empty($last_post_id)) { $forum_update_sql .= $row['last_post_id'] ? ', forum_last_post_id = ' . $last_post_id : ', forum_last_post_id = 0'; } } } elseif ($post_data['first_post']) { $topic_data = $this->get_first_last_post_id($topic_id); if (!empty($topic_data['first_post_id'])) { $topic_update_sql .= 'topic_replies = topic_replies - 1, topic_first_post_id = ' . $topic_data['first_post_id']; } } else { $topic_update_sql .= 'topic_replies = topic_replies - 1'; } } elseif ($mode != 'poll_delete') { $forum_update_sql .= ", forum_last_post_id = {$post_id}" . ($mode == 'newtopic' ? ", forum_topics = forum_topics {$sign}" : ""); $topic_update_sql = "topic_last_post_id = {$post_id}" . ($mode == 'reply' ? ", topic_replies = topic_replies {$sign}" : ", topic_first_post_id = {$post_id}"); } else { // Shall we update poll fields for this topic? //$topic_update_sql .= 'topic_vote = 0'; } $db->sql_transaction('begin'); if ($mode != 'poll_delete') { $sql = "UPDATE " . FORUMS_TABLE . "\n\t\t\t\tSET {$forum_update_sql}\n\t\t\t\tWHERE forum_id = {$forum_id}"; $db->sql_query($sql); } if ($topic_update_sql != '') { $sql = "UPDATE " . TOPICS_TABLE . "\n\t\t\t\tSET {$topic_update_sql}\n\t\t\t\tWHERE topic_id = {$topic_id}"; $db->sql_query($sql); } if ($mode != 'poll_delete') { $forum_postcount = $this->forum_check_postcount($forum_id); $this->sync_topic_details($topic_id, $forum_id, false, false); if (!empty($forum_postcount)) { if (!empty($decrease_counter)) { $this->user_decrease_postscounter($user_id, 1); } else { $sql = "UPDATE " . USERS_TABLE . " SET user_posts = user_posts " . $sign . " WHERE user_id = " . $user_id; $db->sql_query($sql); } $db->sql_transaction('commit'); if ($config['site_history']) { $current_time = time(); $minutes = gmdate('is', $current_time); $hour_now = $current_time - 60 * ($minutes[0] . $minutes[1]) - ($minutes[2] . $minutes[3]); $sql = 'UPDATE ' . SITE_HISTORY_TABLE . ' SET ' . ($mode == 'newtopic' || $post_data['first_post'] ? 'new_topics=new_topics' : 'new_posts=new_posts') . $sign . ' WHERE date=' . $hour_now; $db->sql_return_on_error(true); $result = $db->sql_query($sql); $db->sql_return_on_error(false); if (!$result || !$db->sql_affectedrows()) { $sql = 'INSERT IGNORE INTO ' . SITE_HISTORY_TABLE . ' (date, ' . ($mode == 'newtopic' || $post_data['first_post'] ? 'new_topics' : 'new_posts') . ') VALUES (' . $hour_now . ', "1")'; $db->sql_query($sql); } } if ($user_id != ANONYMOUS) { $this->autogroup($user_id); } } $this->sync_cache(0, 0); board_stats(); cache_tree(true); } return; }
function sync_post_stats(&$mode, &$post_data, &$forum_id, &$topic_id, &$post_id, &$user_id) { global $db, $config; if (!function_exists('update_user_color') || !function_exists('update_user_posts_details')) { include IP_ROOT_PATH . 'includes/functions_groups.' . PHP_EXT; } $sign = $mode == 'delete' ? '- 1' : '+ 1'; $forum_update_sql = "forum_posts = forum_posts {$sign}"; $topic_update_sql = ''; if ($mode == 'delete') { if ($post_data['last_post']) { if ($post_data['first_post']) { $forum_update_sql .= ', forum_topics = forum_topics - 1'; } else { $topic_update_sql .= 'topic_replies = topic_replies - 1'; $topic_data = $this->get_first_last_post_id($topic_id); if (!empty($topic_data['last_post_id'])) { $topic_update_sql .= ', topic_last_post_id = ' . $topic_data['last_post_id']; } } if ($post_data['last_topic']) { $last_post_id = $this->get_forum_last_post_id($forum_id); if (!empty($last_post_id)) { $forum_update_sql .= $row['last_post_id'] ? ', forum_last_post_id = ' . $last_post_id : ', forum_last_post_id = 0'; } } } elseif ($post_data['first_post']) { $topic_data = $this->get_first_last_post_id($topic_id); if (!empty($topic_data['first_post_id'])) { $topic_update_sql .= 'topic_replies = topic_replies - 1, topic_first_post_id = ' . $topic_data['first_post_id']; } } else { $topic_update_sql .= 'topic_replies = topic_replies - 1'; } } elseif ($mode != 'poll_delete') { $forum_update_sql .= ", forum_last_post_id = {$post_id}" . ($mode == 'newtopic' ? ", forum_topics = forum_topics {$sign}" : ""); $topic_update_sql = "topic_last_post_id = {$post_id}" . ($mode == 'reply' ? ", topic_replies = topic_replies {$sign}" : ", topic_first_post_id = {$post_id}"); } else { // Shall we update poll fields for this topic? //$topic_update_sql .= 'topic_vote = 0'; } $db->sql_transaction('begin'); if ($mode != 'poll_delete') { $sql = "UPDATE " . FORUMS_TABLE . "\n\t\t\t\tSET {$forum_update_sql}\n\t\t\t\tWHERE forum_id = {$forum_id}"; $db->sql_query($sql); } if ($topic_update_sql != '') { $sql = "UPDATE " . TOPICS_TABLE . "\n\t\t\t\tSET {$topic_update_sql}\n\t\t\t\tWHERE topic_id = {$topic_id}"; $db->sql_query($sql); } if ($mode != 'poll_delete') { // Disable Post count - BEGIN $postcount = true; $sql = "SELECT forum_postcount\n\t\t\t\tFROM " . FORUMS_TABLE . "\n\t\t\t\tWHERE forum_id = " . $forum_id . "\n\t\t\t\t\tAND forum_postcount = 0"; $result = $db->sql_query($sql); if ($row = $db->sql_fetchrow($result)) { $postcount = false; } // Disable Post count - END $this->sync_topic_details($topic_id, $forum_id, false, false); if ($postcount) { $sql = "UPDATE " . USERS_TABLE . "\n\t\t\t\t\tSET user_posts = user_posts {$sign}\n\t\t\t\t\tWHERE user_id = {$user_id}"; $db->sql_query($sql); $db->sql_transaction('commit'); if ($config['site_history']) { $current_time = time(); $minutes = gmdate('is', $current_time); $hour_now = $current_time - 60 * ($minutes[0] . $minutes[1]) - ($minutes[2] . $minutes[3]); $sql = 'UPDATE ' . SITE_HISTORY_TABLE . ' SET ' . ($mode == 'newtopic' || $post_data['first_post'] ? 'new_topics=new_topics' : 'new_posts=new_posts') . $sign . ' WHERE date=' . $hour_now; $db->sql_return_on_error(true); $result = $db->sql_query($sql); $db->sql_return_on_error(false); if (!$result || !$db->sql_affectedrows()) { $sql = 'INSERT IGNORE INTO ' . SITE_HISTORY_TABLE . ' (date, ' . ($mode == 'newtopic' || $post_data['first_post'] ? 'new_topics' : 'new_posts') . ') VALUES (' . $hour_now . ', "1")'; $db->sql_query($sql); } } $sql = "SELECT ug.user_id, g.group_id as g_id, u.user_posts, u.group_id, u.user_color, g.group_count, g.group_color, g.group_count_max FROM (" . GROUPS_TABLE . " g, " . USERS_TABLE . " u)\n\t\t\t\t\t\tLEFT JOIN " . USER_GROUP_TABLE . " ug ON g.group_id = ug.group_id AND ug.user_id = '" . $user_id . "'\n\t\t\t\t\t\tWHERE u.user_id = '" . $user_id . "'\n\t\t\t\t\t\tAND g.group_single_user = '******'\n\t\t\t\t\t\tAND g.group_count_enable = '1'\n\t\t\t\t\t\tAND g.group_moderator <> '" . $user_id . "'"; $result = $db->sql_query($sql); while ($group_data = $db->sql_fetchrow($result)) { $user_already_added = empty($group_data['user_id']) ? false : true; $user_add = $group_data['group_count'] == $group_data['user_posts'] && $user_id != ANONYMOUS ? true : false; $user_remove = $group_data['group_count'] > $group_data['user_posts'] || $group_data['group_count_max'] < $group_data['user_posts'] ? true : false; if ($user_add && !$user_already_added) { update_user_color($user_id, $group_data['group_color'], $group_data['g_id'], false, false); update_user_posts_details($user_id, $group_data['group_color'], '', false, false); empty_cache_folders(USERS_CACHE_FOLDER); //user join a autogroup $sql = "INSERT INTO " . USER_GROUP_TABLE . " (group_id, user_id, user_pending)\n\t\t\t\t\t\t\tVALUES (" . $group_data['g_id'] . ", {$user_id}, '0')"; $db->sql_query($sql); } elseif ($user_already_added && $user_remove) { update_user_color($user_id, $config['active_users_color'], 0); update_user_posts_details($user_id, '', '', false, false); empty_cache_folders(USERS_CACHE_FOLDER); //remove user from auto group $sql = "DELETE FROM " . USER_GROUP_TABLE . "\n\t\t\t\t\t\t\tWHERE group_id = '" . $group_data['g_id'] . "'\n\t\t\t\t\t\t\tAND user_id = '" . $user_id . "'"; $db->sql_query($sql); } } } $this->sync_cache(0, 0); board_stats(); cache_tree(true); } return; }
function submit_post($mode, &$post_data, &$message, &$meta, &$forum_id, &$topic_id, &$post_id, &$topic_type, &$bbcode_on, &$html_on, &$acro_auto_on, &$smilies_on, &$attach_sig, $post_username, $post_subject, $topic_title_clean, $topic_tags, $post_message, $poll_title, &$poll_options, &$poll_data, &$reg_active, &$reg_reset, &$reg_max_option1, &$reg_max_option2, &$reg_max_option3, &$reg_length, &$news_category, &$topic_show_portal, &$mark_edit, &$topic_desc, $topic_calendar_time = 0, $topic_calendar_duration = 0) { global $db, $cache, $config, $user, $lang; // CrackerTracker v5.x if (($mode == 'newtopic' || $mode == 'reply') && ($config['ctracker_spammer_blockmode'] > 0 || $config['ctracker_spam_attack_boost'] == 1) && $user->data['user_level'] != ANONYMOUS) { include_once IP_ROOT_PATH . 'includes/ctracker/classes/class_ct_userfunctions.' . PHP_EXT; $login_functions = new ct_userfunctions(); $login_functions->handle_postings(); unset($login_functions); } // CrackerTracker v5.x // BEGIN cmx_slash_news_mod if (isset($news_category) && is_numeric($news_category)) { $news_id = intval($news_category); //$topic_type = POST_NEWS; } else { $news_id = 0; } // END cmx_slash_news_mod include IP_ROOT_PATH . 'includes/functions_search.' . PHP_EXT; $current_time = time(); if ($user->data['user_level'] != ADMIN && (!empty($config['force_large_caps_mods']) || $user->data['user_level'] != MOD)) { //$post_subject = strtolower($post_subject); $post_subject = ucwords($post_subject); } // Flood control if ($user->data['user_level'] != ADMIN && $user->data['user_level'] != MOD) { if (!function_exists('check_flood_posting')) { include_once IP_ROOT_PATH . 'includes/functions_flood.' . PHP_EXT; } check_flood_posting(false); } if ($mode == 'editpost') { remove_search_post($post_id); } if ($mode == 'newtopic' || $mode == 'editpost' && $post_data['first_post']) { $topic_vote = !empty($poll_title) && sizeof($poll_options) >= 2 ? 1 : 0; $topic_show_portal = $topic_show_portal == true ? 1 : 0; $topic_calendar_duration = $topic_calendar_duration == '' ? 0 : $topic_calendar_duration; // Event Registration - BEGIN $topic_reg = 0; if ($reg_active == 1) { $topic_reg = 1; } // Event Registration - END $sql = $mode != 'editpost' ? "INSERT INTO " . TOPICS_TABLE . " (topic_title, topic_desc, topic_tags, topic_poster, topic_time, forum_id, news_id, topic_status, topic_type, topic_calendar_time, topic_calendar_duration, topic_reg, topic_show_portal) VALUES ('" . $db->sql_escape($post_subject) . "', '" . $db->sql_escape($topic_desc) . "', " . $db->sql_validate_value($topic_tags) . ", " . $user->data['user_id'] . ", {$current_time}, {$forum_id}, {$news_id}, " . TOPIC_UNLOCKED . ", {$topic_type}, {$topic_calendar_time}, {$topic_calendar_duration}, {$topic_reg}, {$topic_show_portal})" : "UPDATE " . TOPICS_TABLE . " SET topic_title = '" . $db->sql_escape($post_subject) . "', news_id = {$news_id}, topic_desc = '" . $db->sql_escape($topic_desc) . "', topic_tags = " . $db->sql_validate_value($topic_tags) . ", topic_type = {$topic_type}, topic_calendar_time = {$topic_calendar_time}, topic_calendar_duration = {$topic_calendar_duration}, topic_reg = {$topic_reg}" . ", topic_show_portal = {$topic_show_portal}\n\t\tWHERE topic_id = {$topic_id}"; $db->sql_query($sql); if ($mode == 'newtopic') { $topic_id = $db->sql_nextid(); } else { // Event Registration - BEGIN if ($reg_reset) { $sql = "DELETE FROM " . REGISTRATION_TABLE . " WHERE topic_id = " . $topic_id; $db->sql_query($sql); } // Event Registration - END } if (!function_exists('create_clean_topic_title')) { @(include_once IP_ROOT_PATH . 'includes/functions_topics.' . PHP_EXT); } create_clean_topic_title($topic_id, $forum_id, $topic_title_clean, ''); @(include_once IP_ROOT_PATH . 'includes/class_topics_tags.' . PHP_EXT); $class_topics_tags = new class_topics_tags(); $topic_tags_array = $class_topics_tags->create_tags_array($topic_tags); $update_tags = $mode == 'editpost' ? true : false; $class_topics_tags->submit_tags($topic_id, $forum_id, $topic_tags_array, $update_tags); unset($class_topics_tags); // Empty the similar id cache for guests every time we create a new topic or edit the first post in a topic if ($config['similar_topics']) { $clear_result = clear_similar_topics(); } } // Poll management - BEGIN if (($mode == 'newtopic' || $mode == 'editpost' && $post_data['edit_poll']) && !empty($poll_title) && sizeof($poll_options) >= 2) { $poll_title = !empty($poll_title) ? trim($poll_title) : (isset($poll_data['title']) ? trim($poll_data['title']) : ''); $poll_start = !empty($poll_data['start']) ? $poll_data['start'] : $current_time; $poll_length = isset($poll_data['length']) ? max(0, intval($poll_data['length'])) : 0; $poll_max_options = isset($poll_data['max_options']) ? max(1, intval($poll_data['max_options'])) : 1; $poll_last_vote = !empty($post_data['poll_last_vote']) ? $post_data['poll_last_vote'] : 0; $poll_change = !empty($poll_data['change']) ? 1 : 0; $sql_ary = array('poll_title' => $poll_title, 'poll_start' => $poll_start, 'poll_length' => $poll_length, 'poll_max_options' => $poll_max_options, 'poll_last_vote' => $poll_last_vote, 'poll_vote_change' => $poll_change); $sql_poll_update = $db->sql_build_insert_update($sql_ary, false); $sql = "UPDATE " . TOPICS_TABLE . " SET " . $sql_poll_update . " WHERE topic_id = " . $topic_id; $db->sql_query($sql); $delete_option_sql = ''; $old_poll_result = array(); if ($mode == 'editpost' && $post_data['has_poll']) { $sql = "SELECT *\n\t\t\t\tFROM " . POLL_OPTIONS_TABLE . "\n\t\t\t\tWHERE topic_id = {$topic_id}\n\t\t\t\tORDER BY poll_option_id ASC"; $result = $db->sql_query($sql); while ($row = $db->sql_fetchrow($result)) { $old_poll_result[$row['poll_option_id']] = $row['poll_option_total']; if (!isset($poll_options[$row['poll_option_id']])) { $delete_option_sql .= ($delete_option_sql != '' ? ', ' : '') . $row['poll_option_id']; } } } $poll_option_id = 1; @reset($poll_options); while (list($option_id, $option_text) = each($poll_options)) { if (!empty($option_text)) { $option_insert = $mode != 'editpost' || !isset($old_poll_result[$option_id]) ? true : false; $poll_result = $option_insert ? 0 : $old_poll_result[$option_id]; $poll_option_id = $option_insert ? $poll_option_id : $option_id; $sql_tmp_option_ary = array('poll_option_id' => $poll_option_id, 'topic_id' => $topic_id, 'poll_option_text' => $option_text, 'poll_option_total' => $poll_result); $sql_tmp_option = $db->sql_build_insert_update($sql_tmp_option_ary, $option_insert); if ($option_insert) { $sql = "INSERT INTO " . POLL_OPTIONS_TABLE . " " . $sql_tmp_option; } else { $sql = "UPDATE " . POLL_OPTIONS_TABLE . " SET " . $sql_tmp_option . " WHERE poll_option_id = {$option_id} AND topic_id = {$topic_id}"; } $db->sql_query($sql); $poll_option_id++; } } if ($delete_option_sql != '') { $sql = "DELETE FROM " . POLL_OPTIONS_TABLE . "\n\t\t\t\tWHERE poll_option_id IN ({$delete_option_sql})\n\t\t\t\t\tAND topic_id = {$topic_id}"; $db->sql_query($sql); } } // Poll management - END // Event Registration - BEGIN if (($mode == 'newtopic' || $mode == 'editpost') && $topic_reg == 1) { if ($mode == 'editpost') { $sql = "SELECT count(1) chk_reg FROM " . REGISTRATION_DESC_TABLE . " WHERE topic_id = {$topic_id}"; $result = $db->sql_query($sql); $chk_reg = $db->sql_fetchfield('chk_reg', 0, $result) != 0 ? true : false; } $sql = $mode != 'editpost' || $mode == 'editpost' && $chk_reg == false ? "INSERT INTO " . REGISTRATION_DESC_TABLE . " (topic_id, reg_active, reg_max_option1, reg_max_option2, reg_max_option3, reg_start, reg_length) VALUES ({$topic_id}, {$reg_active}, {$reg_max_option1}, {$reg_max_option2}, {$reg_max_option3}, {$current_time}, " . $reg_length * 86400 . ")" : "UPDATE " . REGISTRATION_DESC_TABLE . " SET reg_active = {$reg_active}, reg_max_option1 = {$reg_max_option1}, reg_max_option2 = {$reg_max_option2}, reg_max_option3 = {$reg_max_option3}, reg_length = " . $reg_length * 86400 . " WHERE topic_id = {$topic_id}"; $db->sql_query($sql); } // Event Registration - END // To show also admins modifications decomment this line!!! //if( ($user->data['user_level'] == ADMIN) && !$config['always_show_edit_by'] ) if ($user->data['user_level'] == ADMIN) { $edited_sql = ''; } else { // Original phpBB "Edit By" //$edited_sql = ($mode == 'editpost' && !$post_data['last_post'] && $post_data['poster_post']) ? ", post_edit_time = $current_time, post_edit_count = post_edit_count + 1 " : ""; $edited_sql = ", post_edit_time = '" . $current_time . "', post_edit_count = (post_edit_count + 1), post_edit_id = '" . $user->data['user_id'] . "' "; if ($config['always_show_edit_by'] == true) { $edited_sql = $mode == 'editpost' ? $edited_sql : ''; } else { $edited_sql = $mode == 'editpost' && !$post_data['last_post'] ? $edited_sql : ''; } } $lock_post = request_boolean_var('post_locked', false); $sql = $mode != 'editpost' ? "INSERT INTO " . POSTS_TABLE . " (topic_id, forum_id, poster_id, post_username, post_subject, post_text, post_time, poster_ip, enable_bbcode, enable_html, enable_smilies, enable_autolinks_acronyms, enable_sig, post_locked, post_images) VALUES (" . $topic_id . ", " . $forum_id . ", " . $user->data['user_id'] . ", '" . $db->sql_escape($post_username) . "', '" . $db->sql_escape($post_subject) . "', '" . $db->sql_escape($post_message) . "', " . $current_time . ", '" . $db->sql_escape($user->ip) . "', " . $bbcode_on . ", " . $html_on . ", " . $smilies_on . ", " . $acro_auto_on . ", " . $attach_sig . ", " . (!empty($lock_post) ? '1' : '0') . ", '" . $db->sql_escape($post_data['post_images']) . "')" : "UPDATE " . POSTS_TABLE . " SET post_username = '******', post_text = '" . $db->sql_escape($post_message) . "', post_text_compiled = '', post_subject = '" . $db->sql_escape($post_subject) . "', enable_bbcode = " . $bbcode_on . ", enable_html = " . $html_on . ", enable_smilies = " . $smilies_on . ", enable_autolinks_acronyms = " . $acro_auto_on . ", enable_sig = " . $attach_sig . ", post_locked = " . (!empty($lock_post) ? '1' : '0') . ", post_images = '" . $db->sql_escape($post_data['post_images']) . "' " . $edited_sql . " WHERE post_id = " . $post_id; //die($sql); $db->sql_transaction('begin'); $db->sql_query($sql); if ($mode != 'editpost') { $post_id = $db->sql_nextid(); } // UPI2DB - BEGIN if ($config['upi2db_on']) { $mark_edit = $user->data['user_level'] == ADMIN || $user->data['user_level'] == MOD ? $mark_edit : true; if ($mode != 'editpost' || $mode == 'editpost' && $post_data['last_post'] && $config['upi2db_last_edit_as_new'] && $mark_edit || $mode == 'editpost' && !$post_data['last_post'] && $config['upi2db_edit_as_new'] && $mark_edit || $mode == 'reply') { $sql = "SELECT post_id FROM " . UPI2DB_LAST_POSTS_TABLE . "\n\t\t\t\tWHERE post_id = " . $post_id; $result = $db->sql_query($sql); $id_vorhanden = $db->sql_numrows($result); $db->sql_freeresult($result); if ($id_vorhanden == 0) { $pt_or_pet = $mode != 'editpost' ? "post_time" : "post_edit_time"; $sql = "INSERT INTO " . UPI2DB_LAST_POSTS_TABLE . " (post_id, topic_id, forum_id, poster_id, " . $pt_or_pet . ", topic_type, post_edit_by) VALUES ('{$post_id}', '{$topic_id}', '{$forum_id}', '" . $user->data['user_id'] . "', '{$current_time}', '{$topic_type}', '" . $user->data['user_id'] . "')"; } else { $sql = "UPDATE " . UPI2DB_LAST_POSTS_TABLE . " SET post_edit_time = '" . $current_time . "', topic_type = '" . $topic_type . "', post_edit_by = '" . $user->data['user_id'] . "' WHERE post_id = " . $post_id; } $db->sql_query($sql); } // Edited By Mighty Gorgon - BEGIN if ($user->data['user_level'] != ADMIN && $user->data['user_level'] != MOD) { if ($topic_type == POST_STICKY || $topic_type == POST_ANNOUNCE || $topic_type == POST_GLOBAL_ANNOUNCE) { $sql = "DELETE FROM " . UPI2DB_ALWAYS_READ_TABLE . "\n\t\t\t\t\tWHERE forum_id = " . $forum_id; $db->sql_query($sql); } } // Edited By Mighty Gorgon - END } // UPI2DB - END add_search_words('single', $post_id, $post_message, $post_subject); // DOWNLOADS - BEGIN if (!empty($config['plugins']['downloads']['enabled'])) { setup_extra_lang(array('lang_downloads'), IP_ROOT_PATH . PLUGINS_PATH . $config['plugins']['downloads']['dir'] . 'language/'); include IP_ROOT_PATH . PLUGINS_PATH . $config['plugins']['downloads']['dir'] . 'classes/class_dlmod.' . PHP_EXT; $dl_mod = new dlmod(); $dl_config = $dl_mod->get_config(); if ($dl_config['enable_post_dl_traffic']) { if (!$dl_config['delay_post_traffic'] || (time() - $user->data['user_regdate']) / 84600 > $dl_config['delay_post_traffic']) { $dl_traffic = 0; if ($mode == 'newtopic') { $dl_traffic = $dl_config['newtopic_traffic']; } elseif ($mode == 'reply' || $mode == 'quote') { $dl_traffic = $dl_config['reply_traffic']; } if ($dl_traffic > 0) { $sql = "UPDATE " . USERS_TABLE . "\n\t\t\t\t\t\tSET user_traffic = user_traffic + {$dl_traffic}\n\t\t\t\t\t\tWHERE user_id = " . $user->data['user_id']; $db->sql_query($sql); } } } } // DOWNLOADS - END // ReSync last topic title if needed if ($mode == 'editpost' && $post_data['first_post']) { $sql = "UPDATE " . FORUMS_TABLE . " f\n\t\t\tSET f.forum_last_post_subject = '" . $db->sql_escape($post_subject) . "'\n\t\t\tWHERE f.forum_last_topic_id = " . $topic_id; $result = $db->sql_query($sql); } $db->sql_transaction('commit'); empty_cache_folders(POSTS_CACHE_FOLDER); empty_cache_folders(FORUMS_CACHE_FOLDER); board_stats(); cache_tree(true); $cash_string = ''; // MG Cash MOD For IP - BEGIN if (!empty($config['plugins']['cash']['enabled'])) { $cash_message = $GLOBALS['cm_posting']->update_post($mode, $post_data, $forum_id, $topic_id, $post_id, $topic_type, $post_username, $post_message); $cash_string = '<br />' . $cash_message; } // MG Cash MOD For IP - END $meta = '<meta http-equiv="refresh" content="3;url=' . append_sid(CMS_PAGE_VIEWTOPIC . '?' . POST_POST_URL . '=' . $post_id) . '#p' . $post_id . '">'; $message = $lang['Stored'] . $cash_string . '<br /><br />' . sprintf($lang['Click_view_message'], '<a href="' . append_sid(CMS_PAGE_VIEWTOPIC . '?' . POST_POST_URL . '=' . $post_id) . '#p' . $post_id . '">', '</a>') . '<br /><br />' . sprintf($lang['Click_return_forum'], '<a href="' . append_sid(CMS_PAGE_VIEWFORUM . '?' . POST_FORUM_URL . '=' . $forum_id) . '">', '</a>'); return false; }
function reorder_tree() { global $tree, $db; // Make sure forums cache is empty... empty_cache_folders(FORUMS_CACHE_FOLDER); empty_cache_folders(TOPICS_CACHE_FOLDER); // Read the tree read_tree(true); // Update with new order $order = 0; for ($i = 0; $i < sizeof($tree['data']); $i++) { if (!empty($tree['id'][$i])) { $order += 10; $sql = "UPDATE " . FORUMS_TABLE . "\n\t\t\t\t\t\tSET forum_order = " . $order . "\n\t\t\t\t\t\tWHERE forum_id = " . intval($tree['id'][$i]); $db->sql_query($sql); } } convert_forum_order(); // Make sure forums cache is empty again... empty_cache_folders(FORUMS_CACHE_FOLDER); empty_cache_folders(TOPICS_CACHE_FOLDER); // Re-cache the tree cache_tree(true); board_stats(); }