You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
354 B
11 lines
354 B
<?php
|
|
$desc = $event->getDescription(ThreadEvent::MODE_CLIENT);
|
|
if (!$desc)
|
|
return;
|
|
?>
|
|
<div class="thread-event <?php if ($event->uid) echo 'action'; ?>">
|
|
<span class="type-icon">
|
|
<i class="faded icon-<?php echo $event->getIcon(); ?>"></i>
|
|
</span>
|
|
<span class="faded description"><?php echo $desc; ?></span>
|
|
</div>
|