Hi,
Problem when editing text in the gallery. The field does not extend to edit.
How to solve?
goo.gl/VQF3rt
Hi, Paulo.
What browser you're using? I Checked on FireFox and it was displayed well:
prntscr.com/43ki2c
Hi, Paulo.
Related issue:
www.jomsocial.com/forum/installation/184...sages-on-inbox#93856
I assign developer to this thread.
Hi, Paulo.
Please provide correct FTP credentials... now they are without password.
Hi Paulo,
the issue only happen with long text comment. I confirmed this is a valid bug.
please wait out fixes. for temporary, becuase we don't have comment manager at backend. you can edit that comment from database at table #_community_wall
Regards,
Albert
Hi Paulo,
here the fixes:
1. edit components/com_community/controllers/system.php
2. at line 414 add this code (after $content = $tmpl->fetch('wall.edit');)
// escape message string
$message = str_replace(array("\r\n", "\r", "\n"), '\n', $message);
$message = str_replace('"', '\"', $message);
$objResponse->addScriptCall('joms.jQuery("#wall-edit-container-' . $wallId . '").find("textarea").val("' . str_replace(array("\r\n", "\r", "\n"), '\n', $message) . '");');
$objResponse->addScriptCall('joms.jQuery("#wall-edit-container-' . $wallId . '").find("textarea").val("' . $message . '");');