After a lot of playing about... I have gotten this to work with the all the editors.
This is what I have done... please feel free to comment... my javascript chugs.
Here is my photopostpopup template:
PHP Code:
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<title>$vboptions[bbtitle] - PhotoPost PopUp</title>
$headinclude
<script type="text/javascript">
<!--
<if condition="$show['closewindow']">
self.close();
<else />
self.focus();
</if>
//-->
</script>
<script language="JavaScript" type="text/JavaScript">
function updatePost(UBBCode) {
try{
opener.htmlwindow.focus();
opener.htmlbox.selection.createRange().pasteHTML("<img src='" + UBBCode + "'>");
self.close;
}catch(errorObject){
BodyVal = opener.document.vbform.message.value;
opener.document.vbform.message.value = '[img]https://vborg.vbsupport.ru/[/img]';
}
}
</script>
</head>
<body style="margin:0px">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%">
<tr>
<td class="tcat" colspan="4">PhotoPost PopUp</td>
</tr>
$photopanel
</table>
</body>
</html>
Find this in your pppanel.php:
PHP Code:
$photo_name = str_replace( $theext, "", $photo );
And I replaced the
following two lines with this (I think that is all I replaced... someone let me know if not)
PHP Code:
if ( $medsize > 0 ) $imgurl = "{$data_dir}/$ppcat/{$user}{$photo_name}-med{$theext}";
else $imgurl = "{$data_dir}/$ppcat/{$user}{$photo}";
Basically, they just took out the [img] tags.
I think thats it... Its working on mine anyway. Let me know if anyone has problems and I will see what else I may have changed.
nJoy