aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/mcp/mcp_post.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2007-02-16 23:06:14 +0000
committerNils Adermann <naderman@naderman.de>2007-02-16 23:06:14 +0000
commit72594577015eb9464aa0916c20ed9f8b41f6dfd6 (patch)
tree27b1b5b27e8f7c28cf8972e83e68dea94537d0f3 /phpBB/includes/mcp/mcp_post.php
parentec9a091669e37b799c0fa66f81ccca1ca434afdb (diff)
downloadforums-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.php2
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))
{