1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-27 16:20:13 +02:00

Fixes #1225 - Broken paths to bootstrap glyphs.

This commit is contained in:
Cameron
2015-11-13 14:44:38 -08:00
parent 78efae0cae
commit ef1e1565ad
10 changed files with 296 additions and 9 deletions

View File

@@ -1347,13 +1347,13 @@ class media_admin_ui extends e_admin_ui
);
//TODO FIXME Upgrade to bs3 when Bootstrap3 Admin is ready.
/*
$bs2 = e107::getMedia()->getGlyphs('bs2','icon-');
$bs2 = e107::getMedia()->getGlyphs('bs3','glyphicon-');
foreach($bs2 as $val)
{
$items[] = array(
'previewUrl' => $val,
'previewUrl' => 'glyphicon '.$val,
'saveValue' => $val.'.glyph',
'thumbUrl' => $val,
'title' => $val,
@@ -1362,7 +1362,7 @@ class media_admin_ui extends e_admin_ui
);
}
*/
$fa4 = e107::getMedia()->getGlyphs('fa4');