1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-13 17:12:07 +02:00

fix for home icon in bootstrap 4 #2898

This commit is contained in:
Jimako 2018-01-02 11:36:16 +01:00 committed by GitHub
parent 2d9846272b
commit f5a0a6b916
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?