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.
15 lines
434 B
15 lines
434 B
<h3><?php echo __('Child Tickets'); ?></i></h3>
|
|
<hr/>
|
|
<div>
|
|
<table border="0" cellspacing="" cellpadding="1">
|
|
<colgroup><col style="min-width: 250px;"></col></colgroup>
|
|
<?php
|
|
$tid = $ticket->getId();
|
|
if (($children=$ticket->getChildren()) && (count($children) > 0)) {
|
|
foreach($children as $child)
|
|
echo sprintf('<tr><td>%s</td></tr>', $child[1]);
|
|
} else
|
|
echo __("Ticket doesn't have any children.");
|
|
?>
|
|
</table>
|
|
</div>
|