diff options
author | Nils Adermann <naderman@naderman.de> | 2007-02-16 23:06:14 +0000 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2007-02-16 23:06:14 +0000 |
commit | 72594577015eb9464aa0916c20ed9f8b41f6dfd6 (patch) | |
tree | 27b1b5b27e8f7c28cf8972e83e68dea94537d0f3 /phpBB/includes/mcp/mcp_post.php | |
parent | ec9a091669e37b799c0fa66f81ccca1ca434afdb (diff) | |
download | forums-72594577015eb9464aa0916c20ed9f8b41f6dfd6.tar forums-72594577015eb9464aa0916c20ed9f8b41f6dfd6.tar.gz forums-72594577015eb9464aa0916c20ed9f8b41f6dfd6.tar.bz2 forums-72594577015eb9464aa0916c20ed9f8b41f6dfd6.tar.xz forums-72594577015eb9464aa0916c20ed9f8b41f6dfd6.zip |
- allow converting from one database to another, no need for tables to be in one database anylonger (this also allows switching from one DBMS that was used with phpBB2 to another DBMS supported by phpBB3 including new systems available in Olympus only)
- abstracted some installation code that is now relevant to converting as well into functions_install.php (mostly DBMS selection related)
- fixed a weird smiley path problem, no idea why nobody else noticed this, maybe my fix was incorrect?
- forgot to commit a file last time
git-svn-id: file:///svn/phpbb/trunk@6995 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/mcp/mcp_post.php')
-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 67f5472134..6ce9067d9e 100644 --- a/phpBB/includes/mcp/mcp_post.php +++ b/phpBB/includes/mcp/mcp_post.php @@ -426,7 +426,7 @@ function change_poster(&$post_info, $userdata) $to_username = $userdata['username']; // Renew post info - $post_info = get_post_data(array($post_id)); + $post_info = get_post_data(array($post_id), false, true); if (!sizeof($post_info)) { |