Can we answer a note written by another user?
When I try, I can only answer the notes that I've created.
Hello,
Indeed this is an anomaly.
Ticket #3842 created
Thank you.
in view/objectDetail.php
line 3574
if ($note->idUser==$user->id and !$print and $canUpdate) {
echo ' id).');" title="'.i18n('replyToThisNote').'" > '.formatSmallButton('Reply').'';
echo ' id).','.htmlEncode($note->idPrivacy).');" title="'.i18n('editNote').'" > '.formatSmallButton('Edit').'';
echo ' id).');" title="'.i18n('removeNote').'" > '.formatSmallButton('Remove').'';
}
to
if($obj->id!=null and !$print and $canUpdate){
echo ' id).');" title="'.i18n('replyToThisNote').'" > '.formatSmallButton('Reply').'';
}
if ($note->idUser==$user->id and !$print and $canUpdate) {
echo ' id).','.htmlEncode($note->idPrivacy).');" title="'.i18n('editNote').'" > '.formatSmallButton('Edit').'';
echo ' id).');" title="'.i18n('removeNote').'" > '.formatSmallButton('Remove').'';
}
i'ts works great.