Page 3 of 3
Re: smilies in phocaguestbook v2.0.1
Posted: 06 May 2012, 22:17
by Andi
Thank you! this workaround works great!!!

Re: smilies in phocaguestbook v2.0.1
Posted: 22 May 2013, 03:17
by abmafo
components\com_phocaguestbook\views\guestbook\tmpl
default.php
around line 120
replace
if (function_exists('str_ireplace')) {
$values->content = str_ireplace ('../plugins/editors/tinymce/', 'plugins/editors/tinymce/', $values->content);
} else {
$values->content = str_replace ('../plugins/editors/tinymce/', 'plugins/editors/tinymce/', $values->content);
}
with
if (function_exists('str_ireplace')) {
$values->content = str_ireplace ('../plugins/editors/tinymce/', 'plugins/editors/tinymce/', $values->content);
$values->content = str_ireplace ('../media/editors/tinymce/jscripts/tiny_mce/', 'media/editors/tinymce/jscripts/tiny_mce/', $values->content);
} else {
$values->content = str_replace ('../plugins/editors/tinymce/', 'plugins/editors/tinymce/', $values->content);
$values->content = str_replace ('../media/editors/tinymce/jscripts/tiny_mce/', 'media/editors/tinymce/jscripts/tiny_mce/', $values->content);
}