1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 11:50:30 +02:00

Merge pull request #2943 from Jimmi08/patch-3

fix for home icon in bootstrap 4 #2898
This commit is contained in:
Cameron
2018-01-05 14:21:59 -08:00
committed by GitHub

View File

@@ -3083,7 +3083,8 @@ class e_form
$opt = array();
$homeIcon = e107::getParser()->toGlyph('icon-home.glyph',false);
$homeicon = (deftrue('BOOTSTRAP') === 4) ? 'fa-home' : 'icon-home.glyph';
$homeIcon = e107::getParser()->toGlyph($homeicon,false);
$opt[] = "<a href='".e_HTTP."'>".$homeIcon."</a>"; // Add Site-Pref to disable?