#12089 Add nowrap class to timestamp
This commit is contained in:
parent
f5c4ce872b
commit
6609571482
|
@ -609,12 +609,20 @@ function ui_print_timestamp($unixtime, $return=false, $option=[])
|
|||
$tag = 'span';
|
||||
}
|
||||
|
||||
if (empty($option['style']) === true) {
|
||||
$style = 'class="'.($option['class'] ?? 'nowrap').'"';
|
||||
if (empty($option['class']) === false) {
|
||||
$class = 'class="nowrap '.$option['class'].'"';
|
||||
} else {
|
||||
$style = 'style="'.$option['style'].'"';
|
||||
$class = 'class="nowrap"';
|
||||
}
|
||||
|
||||
if (empty($option['style']) === false) {
|
||||
$style = 'style="'.$option['style'].'"';
|
||||
} else {
|
||||
$style = 'style=""';
|
||||
}
|
||||
|
||||
$style .= ' '.$class;
|
||||
|
||||
if (empty($option['prominent']) === false) {
|
||||
$prominent = $option['prominent'];
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue