Quote:
Originally Posted by cellarius
Try editing photo_popup.php. Find
PHP Code:
// Add whitespace to codebits
$codehtml .= " ";
$codebb .= " ";
Change to
PHP Code:
// Add whitespace to codebits
$codehtml .= "<br /><br />";
$codebb .= "\\n\\n";
Beware: This will add two linebreaks after every image inserted - no exceptions possible.
|
Thank you sir, thats exactly what I was trying to do. :up: