mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-08 09:46:46 +02:00
some tiny changes...
git-svn-id: file:///svn/phpbb/trunk@5967 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -270,7 +270,7 @@ function place_pm_into_folder(&$global_privmsgs_rules, $release = false)
|
||||
|
||||
if (!$user->data['user_new_privmsg'])
|
||||
{
|
||||
return;
|
||||
return 0;
|
||||
}
|
||||
|
||||
$user_new_privmsg = (int) $user->data['user_new_privmsg'];
|
||||
@@ -709,7 +709,7 @@ function handle_mark_actions($user_id, $mark_action)
|
||||
|
||||
if (!sizeof($msg_ids))
|
||||
{
|
||||
return;
|
||||
return false;
|
||||
}
|
||||
|
||||
switch ($mark_action)
|
||||
@@ -889,6 +889,8 @@ function delete_pm($user_id, $msg_ids, $folder_id)
|
||||
WHERE msg_id IN (' . $delete_ids . ')';
|
||||
$db->sql_query($sql);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -1099,7 +1101,7 @@ function submit_pm($mode, $subject, &$data, $update_message, $put_in_outbox = tr
|
||||
// We do not handle erasing posts here
|
||||
if ($mode == 'delete')
|
||||
{
|
||||
return;
|
||||
return false;
|
||||
}
|
||||
|
||||
$current_time = time();
|
||||
|
Reference in New Issue
Block a user