mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-12 20:51:30 +00:00
use 'text-xxx' class from bootstrap instead of own classes
This commit is contained in:
parent
f0bdb0fda3
commit
28d45c0270
|
@ -102,12 +102,12 @@ class SeedDMS_View_ImportUsers extends SeedDMS_Bootstrap_Style {
|
||||||
if(isset($newuser['__logs__'])) {
|
if(isset($newuser['__logs__'])) {
|
||||||
foreach($newuser['__logs__'] as $item) {
|
foreach($newuser['__logs__'] as $item) {
|
||||||
$class = $item['type'] == 'success' ? 'success' : 'error';
|
$class = $item['type'] == 'success' ? 'success' : 'error';
|
||||||
echo "<i class=\"fa fa-circle ".$class."\"></i> ".htmlspecialchars($item['msg'])."<br />";
|
echo "<i class=\"fa fa-circle text-".$class."\"></i> ".htmlspecialchars($item['msg'])."<br />";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
foreach($log[$uhash] as $item) {
|
foreach($log[$uhash] as $item) {
|
||||||
$class = $item['type'] == 'success' ? 'success' : 'error';
|
$class = $item['type'] == 'success' ? 'success' : 'error';
|
||||||
echo "<i class=\"fa fa-circle ".$class."\"></i> ".htmlspecialchars($item['msg'])."<br />";
|
echo "<i class=\"fa fa-circle text-".$class."\"></i> ".htmlspecialchars($item['msg'])."<br />";
|
||||||
}
|
}
|
||||||
echo "</td>";
|
echo "</td>";
|
||||||
echo "</tr>\n";
|
echo "</tr>\n";
|
||||||
|
|
Loading…
Reference in New Issue
Block a user