mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-11 08:53:05 +02:00
git-svn-id: file:///svn/phpbb/trunk@7969 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@ -290,6 +290,7 @@ p a {
|
||||
<li>[Fix] Allow moving private messages from the sentbox (Bug #13791)</li>
|
||||
<li>[Fix] Properly export localized imagesets</li>
|
||||
<li>[Feature] Show the size of Firebird databases</li>
|
||||
<li>[Fix] Show error when moving topic into a category via quickmod (Bug #11611)</li>
|
||||
|
||||
</ul>
|
||||
|
||||
|
@ -570,10 +570,15 @@ function mcp_move_topic($topic_ids)
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
$additional_msg = $user->lang['FORUM_NOT_EXIST'];
|
||||
}
|
||||
|
||||
if (!$to_forum_id || $additional_msg)
|
||||
{
|
||||
unset($_POST['confirm']);
|
||||
unset($_REQUEST['confirm_key']);
|
||||
}
|
||||
|
||||
if (confirm_box(true))
|
||||
@ -964,10 +969,15 @@ function mcp_fork_topic($topic_ids)
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
$additional_msg = $user->lang['FORUM_NOT_EXIST'];
|
||||
}
|
||||
|
||||
if (!$to_forum_id || $additional_msg)
|
||||
if ($additional_msg)
|
||||
{
|
||||
unset($_POST['confirm']);
|
||||
unset($_REQUEST['confirm_key']);
|
||||
}
|
||||
|
||||
if (confirm_box(true))
|
||||
|
Reference in New Issue
Block a user