1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-13 18:14:26 +02:00

Load TinyMce editor CSS from library.

This commit is contained in:
Cameron
2017-01-27 14:18:12 -08:00
parent ad7efe78a9
commit 67df2db265
2 changed files with 26 additions and 26 deletions

View File

@@ -2764,6 +2764,17 @@ class e_parse extends e_parser
*/
public function replaceConstants($text, $mode = '', $all = FALSE)
{
if(is_array($text))
{
$new = array();
foreach($text as $k=>$v)
{
$new[$k] = $this->replaceConstants($v,$mode,$all);
}
return $new;
}
if($mode != "")
{