Hi, confirmed, I will fix it in new version.
For now you can edit it in your code:
administrator\components\com_phocaemail\views\phocaemailwrite\view.html.php
FROM:
Code: Select all
$js = "
function jSelectArticle(id, title, object) {
document.getElementById(object + '_id').value = id;
document.getElementById(object + '_name').value = title;
document.getElementById(object + '_name_display').value = title;
document.getElementById('sbox-window').close();
}";
TO:
Code: Select all
$js = "
function jSelectArticle(id, title, object) {
/* If the modal window will be refreshed, the object=article will be lost
and standard Joomla! id will be set, so correct it */
if (object == 'id') {
object = 'article';
}
document.getElementById(object + '_id').value = id;
document.getElementById(object + '_name').value = title;
document.getElementById(object + '_name_display').value = title;
document.getElementById('sbox-window').close();
}";