Wiki syntax is supported in formatted (HTML) text fields as well as plain text areas.

SVN:trunk[4028]
This commit is contained in:
Denis Flaven
2016-05-04 08:53:47 +00:00
parent b02e163ecc
commit dc5040c1d2
2 changed files with 27 additions and 15 deletions

View File

@@ -310,6 +310,10 @@ class ormCaseLog {
}
else
{
if (!is_null($aTransfoHandler))
{
$sTextEntry = call_user_func($aTransfoHandler, $sTextEntry, true /* wiki "links" only */);
}
$sTextEntry = InlineImage::FixUrls($sTextEntry);
}
$iPos += $aIndex[$index]['text_length'];
@@ -413,6 +417,10 @@ class ormCaseLog {
}
else
{
if (!is_null($aTransfoHandler))
{
$sTextEntry = call_user_func($aTransfoHandler, $sTextEntry, true /* wiki "links" only */);
}
$sTextEntry = InlineImage::FixUrls($sTextEntry);
}
$iPos += $aIndex[$index]['text_length'];