aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/mcp/mcp_post.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2014-06-24 01:24:45 -0400
committerNils Adermann <naderman@naderman.de>2014-06-24 01:24:45 -0400
commit10d963a94e6be18c988d38bba7c235e260b6c8a5 (patch)
treeed36ae9f08fb621a8c3b1da1a66a1e5e63750252 /phpBB/includes/mcp/mcp_post.php
parent5bf8ac475bee6cbfcbbe12bf86a6ce5a65640886 (diff)
parent41becd9c92672b2d77777b8487df5dbb66851342 (diff)
downloadforums-10d963a94e6be18c988d38bba7c235e260b6c8a5.tar
forums-10d963a94e6be18c988d38bba7c235e260b6c8a5.tar.gz
forums-10d963a94e6be18c988d38bba7c235e260b6c8a5.tar.bz2
forums-10d963a94e6be18c988d38bba7c235e260b6c8a5.tar.xz
forums-10d963a94e6be18c988d38bba7c235e260b6c8a5.zip
Merge branch 'develop-ascraeus' into develop
* develop-ascraeus: [ticket/12612] Prefix check_ids() with phpbb_ [ticket/12612] Prefix mcp_sorting() with phpbb_ [ticket/12612] Prefix get_*_data() with phpbb_ and delete unused global [ticket/12612] Prefix module url functions with phpbb_ [ticket/12612] Prefix upload_popup() with phpbb_ [ticket/12612] Prefix handle_post_delete() with phpbb and remove unused global [ticket/12612] Prefix custom UCP module function with phpbb_ [ticket/12612] Prefix _sort_last_active() with phpbb_ [ticket/12612] Prefix show_profile() with phpbb and delete unused global
Diffstat (limited to 'phpBB/includes/mcp/mcp_post.php')
-rw-r--r--phpBB/includes/mcp/mcp_post.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/mcp/mcp_post.php b/phpBB/includes/mcp/mcp_post.php
index d2cc5d285e..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');
@@ -43,7 +43,7 @@ function mcp_post_details($id, $mode, $action)
}
$post_info = $post_info[$post_id];
- $url = append_sid("{$phpbb_root_path}mcp.$phpEx?" . extra_url());
+ $url = append_sid("{$phpbb_root_path}mcp.$phpEx?" . phpbb_extra_url());
switch ($action)
{
@@ -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))
{