fixing internal links in table

This commit is contained in:
2014-08-30 12:04:57 +02:00
parent 7adbc1c356
commit 28f2dabde5
5 changed files with 37 additions and 12 deletions

View File

@@ -1146,7 +1146,7 @@ class Databap extends PhpObject
$asTable['title'] = self::getTableFormat($asTable['title']);
$asTable['description'] = self::getDescriptionFormat($asTable['description']);
$asTable['led'] = self::getDateFormat($asTable['led']);
$asTable['formatted_keywords'] = ToolBox::findReplaceLinks($asTable['keywords']);
$asTable['formatted_keywords'] = str_replace("\n", '<br />', ToolBox::findReplaceLinks($asTable['keywords']));
}
return $asTable;
}