MyBB Community Forums

Full Version: Resizing Editor and Removing "RE: "
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi!

I've added two new bbcode buttons but the gifs images always go quadrant with fixed dimensions and i want to somehow extend them. I thought the size of editor.js is causin that but nothing is changing when i'm altering the size in it. So i'm stuck in a way.

And how to remove the automatic "RE: " prefix when replying?


Thanks!
have you try to change the 'width' attribute of the button's image?

I've searched for "RE: " in mybb files and here the results:
(edit what you need)

[mybb_1212\Upload\inc\datahandlers\post.php]
Line 187 : $subject = "RE: ".$thread['subject'];
Line 197 : $subject = "RE: ".$thread['subject'];

[mybb_1212\Upload\inc\class_custommoderation.php]
Line 174 : $post_options['splitpostsreplysubject'] = 'RE: '.$new_subject;
Line 329 : $thread_options['replysubject'] = 'RE: '.$thread['subject'];

[mybb_1212\Upload\private.php]
Line 331 : $subject = "Re: $subject";

[mybb_1212\Upload\newreply.php]
Line 503 : $subject = "RE: ".$subject;
Line 716 : $subject = "RE: " . $thread['subject'];
Actually the editor(or something else) is auto resizing the buttons no matter what's the original dimensions of the image. And I couldn't find where is it that does that.

And thanks for the "RE: " - it's the newreply.php which puts it.