diff options
author | Crizzo <mail@crizzo.de> | 2015-06-25 22:22:56 +0200 |
---|---|---|
committer | Crizzo <mail@crizzo.de> | 2015-06-25 22:22:56 +0200 |
commit | ef6af2682b42eb764b24b13a700192fff88d5736 (patch) | |
tree | 5d2b659b0df8239f8684cd6cbebc83374f02c117 | |
parent | 84bbd4490e853f9dd971f9da56210c3801cb8205 (diff) | |
download | forums-ef6af2682b42eb764b24b13a700192fff88d5736.tar forums-ef6af2682b42eb764b24b13a700192fff88d5736.tar.gz forums-ef6af2682b42eb764b24b13a700192fff88d5736.tar.bz2 forums-ef6af2682b42eb764b24b13a700192fff88d5736.tar.xz forums-ef6af2682b42eb764b24b13a700192fff88d5736.zip |
[ticket/13966] Adds the missing phpbb_dispatcher to includes/mcp/mcp_post
PHPBB3-13966
-rw-r--r-- | phpBB/includes/mcp/mcp_post.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/mcp/mcp_post.php b/phpBB/includes/mcp/mcp_post.php index f0fc0a3f06..0d1df2b937 100644 --- a/phpBB/includes/mcp/mcp_post.php +++ b/phpBB/includes/mcp/mcp_post.php @@ -461,7 +461,7 @@ function mcp_post_details($id, $mode, $action) */ function change_poster(&$post_info, $userdata) { - global $auth, $db, $config, $phpbb_root_path, $phpEx, $user; + global $auth, $db, $config, $phpbb_root_path, $phpEx, $user, $phpbb_dispatcher; if (empty($userdata) || $userdata['user_id'] == $post_info['user_id']) { |