aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/mcp/mcp_post.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-06-23 22:58:41 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-06-23 22:58:41 +0200
commitc315fc6c891fbeceb20a7370b293cea4645d0193 (patch)
treeeaf1d620251f86b6b321694d46bac4966d353f5a /phpBB/includes/mcp/mcp_post.php
parentbba23f61b334a32faf8c33b62266ae55fa4616a5 (diff)
downloadforums-c315fc6c891fbeceb20a7370b293cea4645d0193.tar
forums-c315fc6c891fbeceb20a7370b293cea4645d0193.tar.gz
forums-c315fc6c891fbeceb20a7370b293cea4645d0193.tar.bz2
forums-c315fc6c891fbeceb20a7370b293cea4645d0193.tar.xz
forums-c315fc6c891fbeceb20a7370b293cea4645d0193.zip
[ticket/12612] Prefix get_*_data() with phpbb_ and delete unused global
PHPBB3-12612
Diffstat (limited to 'phpBB/includes/mcp/mcp_post.php')
-rw-r--r--phpBB/includes/mcp/mcp_post.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/mcp/mcp_post.php b/phpBB/includes/mcp/mcp_post.php
index a490f8a677..e81abd0c8e 100644
--- a/phpBB/includes/mcp/mcp_post.php
+++ b/phpBB/includes/mcp/mcp_post.php
@@ -33,7 +33,7 @@ function mcp_post_details($id, $mode, $action)
$start = request_var('start', 0);
// Get post data
- $post_info = get_post_data(array($post_id), false, true);
+ $post_info = phpbb_get_post_data(array($post_id), false, true);
add_form_key('mcp_post_details');
@@ -508,7 +508,7 @@ function change_poster(&$post_info, $userdata)
$to_username = $userdata['username'];
// Renew post info
- $post_info = get_post_data(array($post_id), false, true);
+ $post_info = phpbb_get_post_data(array($post_id), false, true);
if (!sizeof($post_info))
{