mirror of
https://github.com/holo-gfx/mangadex.git
synced 2024-11-25 04:28:20 -05:00
18 lines
440 B
JavaScript
18 lines
440 B
JavaScript
|
<?php
|
||
|
if ($user->user_id) {
|
||
|
print jquery_post("msg_del", 0, "trash", "Delete", "Deleting", "Your message(s) have been deleted.", "location.reload();");
|
||
|
|
||
|
if ($mode == 'deleted') {
|
||
|
?>
|
||
|
|
||
|
$('#inbox').removeClass('active');
|
||
|
$('#bin').addClass('active');
|
||
|
|
||
|
<?php
|
||
|
}
|
||
|
|
||
|
print display_js_posting();
|
||
|
|
||
|
print jquery_post("msg_send", 0, "pencil-alt", "Send", "Sending", "Your message has been sent.", "location.href = '/messages';");
|
||
|
|
||
|
} ?>
|