1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +02:00

[ticket/12612] Prefix get_*_data() with phpbb_ and delete unused global

PHPBB3-12612
This commit is contained in:
Joas Schilling
2014-06-23 22:58:41 +02:00
parent bba23f61b3
commit c315fc6c89
10 changed files with 39 additions and 39 deletions

View File

@@ -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))
{