diff options
Diffstat (limited to 'phpBB/includes')
| -rw-r--r-- | phpBB/includes/acp/acp_attachments.php | 2 | ||||
| -rw-r--r-- | phpBB/includes/acp/acp_users.php | 16 | ||||
| -rw-r--r-- | phpBB/includes/functions.php | 6 | ||||
| -rw-r--r-- | phpBB/includes/functions_admin.php | 4 | ||||
| -rw-r--r-- | phpBB/includes/functions_container.php | 2 | ||||
| -rw-r--r-- | phpBB/includes/functions_database_helper.php | 8 | ||||
| -rw-r--r-- | phpBB/includes/functions_download.php | 8 | ||||
| -rw-r--r-- | phpBB/includes/mcp/mcp_main.php | 17 | ||||
| -rw-r--r-- | phpBB/includes/mcp/mcp_queue.php | 16 | ||||
| -rw-r--r-- | phpBB/includes/ucp/ucp_pm_compose.php | 4 | ||||
| -rw-r--r-- | phpBB/includes/ucp/ucp_profile.php | 4 | 
11 files changed, 55 insertions, 32 deletions
diff --git a/phpBB/includes/acp/acp_attachments.php b/phpBB/includes/acp/acp_attachments.php index 958a6456c2..f68fd76587 100644 --- a/phpBB/includes/acp/acp_attachments.php +++ b/phpBB/includes/acp/acp_attachments.php @@ -20,7 +20,7 @@ if (!defined('IN_PHPBB'))  */  class acp_attachments  { -	/** @var \phpbb\db\driver\driver */ +	/** @var \phpbb\db\driver\driver_interface */  	protected $db;  	/** @var \phpbb\config\config */ diff --git a/phpBB/includes/acp/acp_users.php b/phpBB/includes/acp/acp_users.php index 59b6f49436..a720334ed2 100644 --- a/phpBB/includes/acp/acp_users.php +++ b/phpBB/includes/acp/acp_users.php @@ -1253,17 +1253,13 @@ class acp_users  								WHERE user_id = $user_id";  							$db->sql_query($sql); -							switch ($log_warnings) +							if ($log_warnings)  							{ -								case 2: -									add_log('admin', 'LOG_WARNINGS_DELETED', $user_row['username'], $num_warnings); -								break; -								case 1: -									add_log('admin', 'LOG_WARNING_DELETED', $user_row['username']); -								break; -								default: -									add_log('admin', 'LOG_WARNINGS_DELETED_ALL', $user_row['username']); -								break; +								add_log('admin', 'LOG_WARNINGS_DELETED', $user_row['username'], $num_warnings); +							} +							else +							{ +								add_log('admin', 'LOG_WARNINGS_DELETED_ALL', $user_row['username']);  							}  						}  					} diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 8c29bc7171..69f7c3f162 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -2437,19 +2437,19 @@ function meta_refresh($time, $url, $disable_cd_check = false)  {  	global $template, $refresh_data, $request; +	$url = redirect($url, true, $disable_cd_check);  	if ($request->is_ajax())  	{  		$refresh_data = array(  			'time'	=> $time, -			'url'		=> str_replace('&', '&', $url) +			'url'	=> $url,  		);  	}  	else  	{ -		$url = redirect($url, true, $disable_cd_check); +		// For XHTML compatibility we change back & to &  		$url = str_replace('&', '&', $url); -		// For XHTML compatibility we change back & to &  		$template->assign_vars(array(  			'META' => '<meta http-equiv="refresh" content="' . $time . '; url=' . $url . '" />')  		); diff --git a/phpBB/includes/functions_admin.php b/phpBB/includes/functions_admin.php index 2bf8e6dcf0..d72f89b6ac 100644 --- a/phpBB/includes/functions_admin.php +++ b/phpBB/includes/functions_admin.php @@ -2404,7 +2404,7 @@ function auto_prune($forum_id, $prune_mode, $prune_flags, $prune_days, $prune_fr  * via admin_permissions. Changes of usernames and group names  * must be carried through for the moderators table.  * -* @param \phpbb\db\driver\driver $db Database connection +* @param \phpbb\db\driver\driver_interface $db Database connection  * @param \phpbb\cache\driver\driver_interface Cache driver  * @param \phpbb\auth\auth $auth Authentication object  * @return null @@ -2627,7 +2627,7 @@ function view_log($mode, &$log, &$log_count, $limit = 0, $offset = 0, $forum_id  /**  * Removes moderators and administrators from foe lists.  * -* @param \phpbb\db\driver\driver $db Database connection +* @param \phpbb\db\driver\driver_interface $db Database connection  * @param \phpbb\auth\auth $auth Authentication object  * @param array|bool $group_id If an array, remove all members of this group from foe lists, or false to ignore  * @param array|bool $user_id If an array, remove this user from foe lists, or false to ignore diff --git a/phpBB/includes/functions_container.php b/phpBB/includes/functions_container.php index 667d27fd20..448cb0b7ed 100644 --- a/phpBB/includes/functions_container.php +++ b/phpBB/includes/functions_container.php @@ -26,7 +26,7 @@ if (!defined('IN_PHPBB'))  * Used to bootstrap the container.  *  * @param string $config_file -* @return \phpbb\db\driver\driver +* @return \phpbb\db\driver\driver_interface  */  function phpbb_bootstrap_db_connection($config_file)  { diff --git a/phpBB/includes/functions_database_helper.php b/phpBB/includes/functions_database_helper.php index 923e542690..4b2cbdd25b 100644 --- a/phpBB/includes/functions_database_helper.php +++ b/phpBB/includes/functions_database_helper.php @@ -22,14 +22,14 @@ if (!defined('IN_PHPBB'))  *  * The only supported table is bookmarks.  * -* @param \phpbb\db\driver\driver $db Database object +* @param \phpbb\db\driver\driver_interface $db Database object  * @param string $table Table on which to perform the update  * @param string $column Column whose values to change  * @param array $from_values An array of values that should be changed  * @param int $to_value The new value  * @return null  */ -function phpbb_update_rows_avoiding_duplicates(\phpbb\db\driver\driver $db, $table, $column, $from_values, $to_value) +function phpbb_update_rows_avoiding_duplicates(\phpbb\db\driver\driver_interface $db, $table, $column, $from_values, $to_value)  {  	$sql = "SELECT $column, user_id  		FROM $table @@ -107,14 +107,14 @@ function phpbb_update_rows_avoiding_duplicates(\phpbb\db\driver\driver $db, $tab  *  * The only supported table is topics_watch.  * -* @param \phpbb\db\driver\driver $db Database object +* @param \phpbb\db\driver\driver_interface $db Database object  * @param string $table Table on which to perform the update  * @param string $column Column whose values to change  * @param array $from_values An array of values that should be changed  * @param int $to_value The new value  * @return null  */ -function phpbb_update_rows_avoiding_duplicates_notify_status(\phpbb\db\driver\driver $db, $table, $column, $from_values, $to_value) +function phpbb_update_rows_avoiding_duplicates_notify_status(\phpbb\db\driver\driver_interface $db, $table, $column, $from_values, $to_value)  {  	$sql = "SELECT $column, user_id, notify_status  		FROM $table diff --git a/phpBB/includes/functions_download.php b/phpBB/includes/functions_download.php index c895f7b54b..7ad34d9515 100644 --- a/phpBB/includes/functions_download.php +++ b/phpBB/includes/functions_download.php @@ -596,7 +596,7 @@ function phpbb_parse_range_request($request_array, $filesize)  /**  * Increments the download count of all provided attachments  * -* @param \phpbb\db\driver\driver $db The database object +* @param \phpbb\db\driver\driver_interface $db The database object  * @param array|int $ids The attach_id of each attachment  *  * @return null @@ -617,7 +617,7 @@ function phpbb_increment_downloads($db, $ids)  /**  * Handles authentication when downloading attachments from a post or topic  * -* @param \phpbb\db\driver\driver $db The database object +* @param \phpbb\db\driver\driver_interface $db The database object  * @param \phpbb\auth\auth $auth The authentication object  * @param int $topic_id The id of the topic that we are downloading from  * @@ -663,7 +663,7 @@ function phpbb_download_handle_forum_auth($db, $auth, $topic_id)  /**  * Handles authentication when downloading attachments from PMs  * -* @param \phpbb\db\driver\driver $db The database object +* @param \phpbb\db\driver\driver_interface $db The database object  * @param \phpbb\auth\auth $auth The authentication object  * @param int $user_id The user id  * @param int $msg_id The id of the PM that we are downloading from @@ -690,7 +690,7 @@ function phpbb_download_handle_pm_auth($db, $auth, $user_id, $msg_id)  /**  * Checks whether a user can download from a particular PM  * -* @param \phpbb\db\driver\driver $db The database object +* @param \phpbb\db\driver\driver_interface $db The database object  * @param int $user_id The user id  * @param int $msg_id The id of the PM that we are downloading from  * diff --git a/phpBB/includes/mcp/mcp_main.php b/phpBB/includes/mcp/mcp_main.php index 016094c5d4..55440bf192 100644 --- a/phpBB/includes/mcp/mcp_main.php +++ b/phpBB/includes/mcp/mcp_main.php @@ -415,9 +415,8 @@ function change_topic_type($action, $topic_ids)  */  function mcp_move_topic($topic_ids)  { -	global $auth, $user, $db, $template; +	global $auth, $user, $db, $template, $phpbb_log, $request;  	global $phpEx, $phpbb_root_path; -	global $request;  	// Here we limit the operation to one forum only  	$forum_id = check_ids($topic_ids, TOPICS_TABLE, 'topic_id', array('m_move'), true); @@ -525,9 +524,19 @@ function mcp_move_topic($topic_ids)  		$forum_ids = array($to_forum_id);  		foreach ($topic_data as $topic_id => $row)  		{ -			// Get the list of forums to resync, add a log entry +			// Get the list of forums to resync  			$forum_ids[] = $row['forum_id']; -			add_log('mod', $to_forum_id, $topic_id, 'LOG_MOVE', $row['forum_name'], $forum_data['forum_name']); + +			// We add the $to_forum_id twice, because 'forum_id' is updated +			// when the topic is moved again later. +			$phpbb_log->add('mod', $user->data['user_id'], $user->ip, 'LOG_MOVE', false, array( +				'forum_id'		=> (int) $to_forum_id, +				'topic_id'		=> (int) $topic_id, +				$row['forum_name'], +				$forum_data['forum_name'], +				(int) $row['forum_id'], +				(int) $forum_data['forum_id'], +			));  			// Leave a redirection if required and only if the topic is visible to users  			if ($leave_shadow && $row['topic_visibility'] == ITEM_APPROVED && $row['topic_type'] != POST_GLOBAL) diff --git a/phpBB/includes/mcp/mcp_queue.php b/phpBB/includes/mcp/mcp_queue.php index a46c4bd499..8d998919e5 100644 --- a/phpBB/includes/mcp/mcp_queue.php +++ b/phpBB/includes/mcp/mcp_queue.php @@ -1163,6 +1163,22 @@ class mcp_queue  				$success_msg .= '_DELETED_SUCCESS';  			} +			// If we came from viewtopic, we try to go back to it. +			if (strpos($redirect, $phpbb_root_path . 'viewtopic.' . $phpEx) === 0) +			{ +				if ($num_disapproved_topics == 0) +				{ +					// So we need to remove the post id part from the Url +					$redirect = str_replace("&p={$post_id_list[0]}#p{$post_id_list[0]}", '', $redirect); +				} +				else +				{ +					// However this is only possible if the topic still exists, +					// Otherwise we go back to the viewforum page +					$redirect = append_sid($phpbb_root_path . 'viewforum.' . $phpEx, 'f=' . $request->variable('f', 0)); +				} +			} +  			meta_refresh(3, $redirect);  			$message = $user->lang[$success_msg]; diff --git a/phpBB/includes/ucp/ucp_pm_compose.php b/phpBB/includes/ucp/ucp_pm_compose.php index 87dfdf902b..3d95dc9a97 100644 --- a/phpBB/includes/ucp/ucp_pm_compose.php +++ b/phpBB/includes/ucp/ucp_pm_compose.php @@ -1081,6 +1081,7 @@ function compose_pm($id, $mode, $action, $user_folders = array())  		'S_SAVE_ALLOWED'		=> ($auth->acl_get('u_savedrafts') && $action != 'edit') ? true : false,  		'S_HAS_DRAFTS'			=> ($auth->acl_get('u_savedrafts') && $drafts),  		'S_FORM_ENCTYPE'		=> $form_enctype, +		'S_ATTACH_DATA'			=> json_encode($message_parser->attachment_data),  		'S_BBCODE_IMG'			=> $img_status,  		'S_BBCODE_FLASH'		=> $flash_status, @@ -1104,7 +1105,8 @@ function compose_pm($id, $mode, $action, $user_folders = array())  	if ($allowed)  	{ -		$plupload->configure($cache, $template, $s_action, false); +		$max_files = ($auth->acl_gets('a_', 'm_')) ? 0 : (int) $config['max_attachments_pm']; +		$plupload->configure($cache, $template, $s_action, false, $max_files);  	}  	// Attachment entry diff --git a/phpBB/includes/ucp/ucp_profile.php b/phpBB/includes/ucp/ucp_profile.php index 76f8988fb9..a14f79f9fd 100644 --- a/phpBB/includes/ucp/ucp_profile.php +++ b/phpBB/includes/ucp/ucp_profile.php @@ -679,8 +679,6 @@ class ucp_profile  				while ($row = $db->sql_fetchrow($result))  				{  					$template->assign_block_vars('sessions', array( -						'errors' => $error, -  						'KEY' => $row['key_id'],  						'IP' => $row['last_ip'],  						'LOGIN_TIME' => $user->format_date($row['last_login']), @@ -693,6 +691,8 @@ class ucp_profile  		}  		$template->assign_vars(array( +			'ERROR'		=> (sizeof($error)) ? implode('<br />', $error) : '', +  			'L_TITLE'	=> $user->lang['UCP_PROFILE_' . strtoupper($mode)],  			'S_HIDDEN_FIELDS'	=> $s_hidden_fields,  | 
