1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-13 10:04:35 +02:00

PHP8/Bootstrap5 Fixes

This commit is contained in:
Cameron
2021-01-29 20:11:49 -08:00
parent 0610dad19a
commit eee039b616
5 changed files with 18 additions and 8 deletions

View File

@@ -1411,9 +1411,7 @@ i.e-cat_users-32{ background-position: -555px 0; width: 32px; height: 32px; }
$srch = array('{ICON}', '{CAPTION}');
$repl = array(varset($extraParms['icon']), $title);
$title = str_replace($srch,$repl, $tmpl['caption']);
$title = str_replace($srch,$repl, varset($tmpl['caption']));
$ret = $ns->tablerender($title, $text, 'default', true);
$ns->setUniqueId(null);