diff options
author | Marc Alexander <admin@m-a-styles.de> | 2015-06-26 10:19:58 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2015-06-26 10:19:58 +0200 |
commit | 7d7b536874aa7eae7a6c5451d1ed8ee1dc62a1df (patch) | |
tree | 5d2b659b0df8239f8684cd6cbebc83374f02c117 | |
parent | 84bbd4490e853f9dd971f9da56210c3801cb8205 (diff) | |
parent | ef6af2682b42eb764b24b13a700192fff88d5736 (diff) | |
download | forums-7d7b536874aa7eae7a6c5451d1ed8ee1dc62a1df.tar forums-7d7b536874aa7eae7a6c5451d1ed8ee1dc62a1df.tar.gz forums-7d7b536874aa7eae7a6c5451d1ed8ee1dc62a1df.tar.bz2 forums-7d7b536874aa7eae7a6c5451d1ed8ee1dc62a1df.tar.xz forums-7d7b536874aa7eae7a6c5451d1ed8ee1dc62a1df.zip |
Merge pull request #3728 from Crizz0/ticket/13966
[ticket/13966] Adds the missing phpbb_dispatcher to includes/mcp/mcp_…
-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']) { |