mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 23:45:20 +02:00
[ticket/12612] Prefix upload_popup() with phpbb_
PHPBB3-12612
This commit is contained in:
parent
5403b48788
commit
e4437e19e8
@ -2489,7 +2489,7 @@ function phpbb_bump_topic($forum_id, $topic_id, $post_data, $bump_time = false)
|
|||||||
/**
|
/**
|
||||||
* Show upload popup (progress bar)
|
* Show upload popup (progress bar)
|
||||||
*/
|
*/
|
||||||
function upload_popup($forum_style = 0)
|
function phpbb_upload_popup($forum_style = 0)
|
||||||
{
|
{
|
||||||
global $template, $user;
|
global $template, $user;
|
||||||
|
|
||||||
|
@ -195,7 +195,7 @@ switch ($mode)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
upload_popup();
|
phpbb_upload_popup();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
@ -233,7 +233,7 @@ if ($auth->acl_get('m_approve', $forum_id) && ((($mode == 'reply' || $mode == 'b
|
|||||||
|
|
||||||
if ($mode == 'popup')
|
if ($mode == 'popup')
|
||||||
{
|
{
|
||||||
upload_popup($post_data['forum_style']);
|
phpbb_upload_popup($post_data['forum_style']);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user