Zeile 14 | Zeile 14 |
---|
$templatelist = "newthread,previewpost,loginbox,changeuserbox,newthread_postpoll,posticons,codebuttons,postbit,post_attachments_attachment_unapproved,newreply_modoptions_close,newreply_modoptions_stick"; $templatelist .= ",newthread_disablesmilies,post_attachments_new,post_attachments,post_savedraftbutton,post_subscription_method,post_attachments_attachment_remove,postbit_warninglevel_formatted,postbit_icon"; $templatelist .= ",forumdisplay_rules,forumdisplay_rules_link,post_attachments_attachment_postinsert,post_attachments_attachment,newthread_signature,post_prefixselect_prefix,post_prefixselect_single,posticons_icon";
|
$templatelist = "newthread,previewpost,loginbox,changeuserbox,newthread_postpoll,posticons,codebuttons,postbit,post_attachments_attachment_unapproved,newreply_modoptions_close,newreply_modoptions_stick"; $templatelist .= ",newthread_disablesmilies,post_attachments_new,post_attachments,post_savedraftbutton,post_subscription_method,post_attachments_attachment_remove,postbit_warninglevel_formatted,postbit_icon"; $templatelist .= ",forumdisplay_rules,forumdisplay_rules_link,post_attachments_attachment_postinsert,post_attachments_attachment,newthread_signature,post_prefixselect_prefix,post_prefixselect_single,posticons_icon";
|
$templatelist .= ",post_captcha_hidden,post_captcha_recaptcha,post_captcha_recaptcha_invisible,post_captcha_nocaptcha,postbit_gotopost,newthread_postoptions,post_attachments_add";
| $templatelist .= ",post_captcha_hidden,post_captcha_recaptcha_invisible,post_captcha_nocaptcha,postbit_gotopost,newthread_postoptions,post_attachments_add,post_attachments_viewlink";
|
$templatelist .= ",postbit_avatar,postbit_find,postbit_pm,postbit_rep_button,postbit_www,postbit_email,postbit_reputation,postbit_warn,postbit_warninglevel,postbit_author_user,postbit_author_guest,post_captcha"; $templatelist .= ",postbit_signature,postbit_classic,postbit_attachments_thumbnails_thumbnail,postbit_attachments_images_image,postbit_attachments_attachment,postbit_attachments_attachment_unapproved"; $templatelist .= ",postbit_attachments_thumbnails,postbit_attachments_images,postbit_attachments,postbit_reputation_formatted_link,post_attachments_update,postbit_offline,newreply_modoptions,newthread_multiquote_external";
| $templatelist .= ",postbit_avatar,postbit_find,postbit_pm,postbit_rep_button,postbit_www,postbit_email,postbit_reputation,postbit_warn,postbit_warninglevel,postbit_author_user,postbit_author_guest,post_captcha"; $templatelist .= ",postbit_signature,postbit_classic,postbit_attachments_thumbnails_thumbnail,postbit_attachments_images_image,postbit_attachments_attachment,postbit_attachments_attachment_unapproved"; $templatelist .= ",postbit_attachments_thumbnails,postbit_attachments_images,postbit_attachments,postbit_reputation_formatted_link,post_attachments_update,postbit_offline,newreply_modoptions,newthread_multiquote_external";
|
Zeile 150 | Zeile 150 |
---|
if((empty($_POST) && empty($_FILES)) && $mybb->get_input('processed', MyBB::INPUT_INT) == 1) {
|
if((empty($_POST) && empty($_FILES)) && $mybb->get_input('processed', MyBB::INPUT_INT) == 1) {
|
error($lang->error_cannot_upload_php_post);
| error($lang->error_empty_post_input);
|
}
$errors = array();
| }
$errors = array();
|
Zeile 1026 | Zeile 1026 |
---|
{ $friendlyquota = get_friendly_size($mybb->usergroup['attachquota']*1024); }
|
{ $friendlyquota = get_friendly_size($mybb->usergroup['attachquota']*1024); }
|
$friendlyusage = get_friendly_size($usage['ausage']); $lang->attach_quota = $lang->sprintf($lang->attach_quota, $friendlyusage, $friendlyquota);
| $lang->attach_quota = $lang->sprintf($lang->attach_quota, $friendlyquota); if($usage['ausage'] !== NULL) { $friendlyusage = get_friendly_size($usage['ausage']); $lang->attach_usage = $lang->sprintf($lang->attach_usage, $friendlyusage); eval("\$link_viewattachments = \"".$templates->get("post_attachments_viewlink")."\";"); } else { $lang->attach_usage = ""; }
|
if($mybb->settings['maxattachments'] == 0 || ($mybb->settings['maxattachments'] != 0 && $attachcount < $mybb->settings['maxattachments']) && !isset($noshowattach)) { eval("\$attach_add_options = \"".$templates->get("post_attachments_add")."\";");
| if($mybb->settings['maxattachments'] == 0 || ($mybb->settings['maxattachments'] != 0 && $attachcount < $mybb->settings['maxattachments']) && !isset($noshowattach)) { eval("\$attach_add_options = \"".$templates->get("post_attachments_add")."\";");
|
Zeile 1043 | Zeile 1054 |
---|
eval("\$newattach = \"".$templates->get("post_attachments_new")."\";"); } eval("\$attachbox = \"".$templates->get("post_attachments")."\";");
|
eval("\$newattach = \"".$templates->get("post_attachments_new")."\";"); } eval("\$attachbox = \"".$templates->get("post_attachments")."\";");
|
|
|
$bgcolor = alt_trow();
|
$bgcolor = alt_trow();
|
}
| }
|
if($mybb->user['uid']) { eval("\$savedraftbutton = \"".$templates->get("post_savedraftbutton", 1, 0)."\";"); }
|
if($mybb->user['uid']) { eval("\$savedraftbutton = \"".$templates->get("post_savedraftbutton", 1, 0)."\";"); }
|
|
|
$captcha = '';
// Show captcha image for guests if enabled
| $captcha = '';
// Show captcha image for guests if enabled
|
Zeile 1075 | Zeile 1086 |
---|
}
if(!$correct)
|
}
if(!$correct)
|
{
| {
|
if($post_captcha->type == 1)
|
if($post_captcha->type == 1)
|
{
| {
|
$post_captcha->build_captcha();
|
$post_captcha->build_captcha();
|
} elseif(in_array($post_captcha->type, array(2, 4, 5)))
| } elseif(in_array($post_captcha->type, array(4, 5)))
|
{ $post_captcha->build_recaptcha();
|
{ $post_captcha->build_recaptcha();
|
}
if($post_captcha->html) { $captcha = $post_captcha->html;
| |
} }
|
} }
|
else if($correct && (in_array($post_captcha->type, array(2, 4, 5))))
| else if($correct && (in_array($post_captcha->type, array(4, 5))))
|
{ $post_captcha->build_recaptcha();
|
{ $post_captcha->build_recaptcha();
|
| }
|
|
|
if($post_captcha->html) { $captcha = $post_captcha->html; }
| if($post_captcha->html) { $captcha = $post_captcha->html;
|
} }
| } }
|