Zeile 6 | Zeile 6 |
---|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* $Id: private.php 5476 2011-06-24 14:49:59Z Tomm $
| * $Id$
|
*/
define("IN_MYBB", 1);
| */
define("IN_MYBB", 1);
|
Zeile 484 | Zeile 484 |
---|
{ $message['message'] = my_substr($message['message'], 0, 200)."..."; }
|
{ $message['message'] = my_substr($message['message'], 0, 200)."..."; }
|
// For my sanity... $message['message'] = htmlspecialchars_uni($message['message']);
| |
eval("\$messagelist .= \"".$templates->get("private_search_messagebit")."\";"); }
| eval("\$messagelist .= \"".$templates->get("private_search_messagebit")."\";"); }
|
Zeile 542 | Zeile 539 |
---|
$send_errors = '';
if($mybb->input['action'] == "do_send" && $mybb->request_method == "post")
|
$send_errors = '';
if($mybb->input['action'] == "do_send" && $mybb->request_method == "post")
|
{ if($mybb->usergroup['cansendpms'] == 0) { error_no_permission();
| { if($mybb->usergroup['cansendpms'] == 0) { error_no_permission();
|
}
// Verify incoming POST request
| }
// Verify incoming POST request
|
Zeile 603 | Zeile 600 |
---|
// Now let the pm handler do all the hard work. if(!$pmhandler->validate_pm())
|
// Now let the pm handler do all the hard work. if(!$pmhandler->validate_pm())
|
{
| {
|
$pm_errors = $pmhandler->get_friendly_errors(); $send_errors = inline_error($pm_errors); $mybb->input['action'] = "send";
| $pm_errors = $pmhandler->get_friendly_errors(); $send_errors = inline_error($pm_errors); $mybb->input['action'] = "send";
|
Zeile 616 | Zeile 613 |
---|
if(isset($pminfo['draftsaved'])) { redirect("private.php", $lang->redirect_pmsaved);
|
if(isset($pminfo['draftsaved'])) { redirect("private.php", $lang->redirect_pmsaved);
|
}
| }
|
else { redirect("private.php", $lang->redirect_pmsent); } } }
|
else { redirect("private.php", $lang->redirect_pmsent); } } }
|
|
|
if($mybb->input['action'] == "send") { if($mybb->usergroup['cansendpms'] == 0) { error_no_permission();
|
if($mybb->input['action'] == "send") { if($mybb->usergroup['cansendpms'] == 0) { error_no_permission();
|
}
$plugins->run_hooks("private_send_start");
| }
$plugins->run_hooks("private_send_start");
|
$smilieinserter = $codebuttons = '';
| $smilieinserter = $codebuttons = '';
|
Zeile 643 | Zeile 640 |
---|
$smilieinserter = build_clickable_smilies(); } }
|
$smilieinserter = build_clickable_smilies(); } }
|
| $lang->post_icon = $lang->message_icon;
|
$posticons = get_post_icons(); $previewmessage = $mybb->input['message'];
| $posticons = get_post_icons(); $previewmessage = $mybb->input['message'];
|
Zeile 1241 | Zeile 1240 |
---|
} } $plugins->run_hooks("private_do_tracking_end");
|
} } $plugins->run_hooks("private_do_tracking_end");
|
redirect("private.php", $lang->redirect_pmstrackingstopped);
| redirect("private.php?action=tracking", $lang->redirect_pmstrackingstopped);
|
} elseif($mybb->input['stoptrackingunread']) {
| } elseif($mybb->input['stoptrackingunread']) {
|
Zeile 1256 | Zeile 1255 |
---|
} } $plugins->run_hooks("private_do_tracking_end");
|
} } $plugins->run_hooks("private_do_tracking_end");
|
redirect("private.php", $lang->redirect_pmstrackingstopped);
| redirect("private.php?action=tracking", $lang->redirect_pmstrackingstopped);
|
} elseif($mybb->input['cancel']) {
| } elseif($mybb->input['cancel']) {
|
Zeile 1282 | Zeile 1281 |
---|
} } $plugins->run_hooks("private_do_tracking_end");
|
} } $plugins->run_hooks("private_do_tracking_end");
|
redirect("private.php", $lang->redirect_pmstrackingcanceled);
| redirect("private.php?action=tracking", $lang->redirect_pmstrackingcanceled);
|
} }
| } }
|