-
Bug
-
Resolution: Fixed
-
Minor
-
3.1.5
-
None
-
PHP 5.4.41; MySQL(i) 5.5.38
Changing the author of a posting leads to:
[phpBB Debug] PHP Notice: in file [ROOT]/includes/mcp/mcp_post.php on line 541: Undefined variable: phpbb_dispatcher |
Find:
/** |
* Change a post's poster
|
*/
|
function change_poster(&$post_info, $userdata)
|
{
|
global $auth, $db, $config, $phpbb_root_path, $phpEx, $user;
|
Replace with:
/** |
* Change a post's poster
|
*/
|
function change_poster(&$post_info, $userdata)
|
{
|
global $auth, $db, $config, $phpbb_root_path, $phpEx, $user, $phpbb_dispatcher;
|