1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-19 04:02:28 +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
commit 4c187b8c6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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?