Skip to content
Snippets Groups Projects
Commit 136a235d authored by Jared Hancock's avatar Jared Hancock
Browse files

oops: Fix a few HTML bugs

parent 38438e54
No related branches found
No related tags found
No related merge requests found
...@@ -202,7 +202,7 @@ if($ticket->isOverdue()) ...@@ -202,7 +202,7 @@ if($ticket->isOverdue())
<?php if ($user->getOrgId()) { ?> <?php if ($user->getOrgId()) { ?>
<li><a href="orgs.php?id=<?php echo $user->getOrgId(); ?>"><i class="icon-building icon-fixed-width"></i> Manage Organization</a></li> <li><a href="orgs.php?id=<?php echo $user->getOrgId(); ?>"><i class="icon-building icon-fixed-width"></i> Manage Organization</a></li>
<?php } ?> <?php } ?>
</u> </ul>
</div> </div>
<?php <?php
} }
...@@ -323,7 +323,7 @@ foreach (DynamicFormEntry::forTicket($ticket->getId()) as $form) { ...@@ -323,7 +323,7 @@ foreach (DynamicFormEntry::forTicket($ticket->getId()) as $form) {
if (count($answers) == 0) if (count($answers) == 0)
continue; continue;
?> ?>
</tr><tr> <tr>
<td colspan="2"> <td colspan="2">
<table cellspacing="0" cellpadding="4" width="100%" border="0"> <table cellspacing="0" cellpadding="4" width="100%" border="0">
<?php foreach($answers as $a) { <?php foreach($answers as $a) {
...@@ -339,10 +339,10 @@ foreach (DynamicFormEntry::forTicket($ticket->getId()) as $form) { ...@@ -339,10 +339,10 @@ foreach (DynamicFormEntry::forTicket($ticket->getId()) as $form) {
<?php } ?> <?php } ?>
</table> </table>
</td> </td>
</tr>
<?php <?php
$idx++; $idx++;
} ?> } ?>
</tr>
</table> </table>
<div class="clear"></div> <div class="clear"></div>
<h2 style="padding:10px 0 5px 0; font-size:11pt;"><?php echo Format::htmlchars($ticket->getSubject()); ?></h2> <h2 style="padding:10px 0 5px 0; font-size:11pt;"><?php echo Format::htmlchars($ticket->getSubject()); ?></h2>
...@@ -640,7 +640,7 @@ $tcount+= $ticket->getNumNotes(); ...@@ -640,7 +640,7 @@ $tcount+= $ticket->getNumNotes();
Note title - summary of the note (optional)</div> Note title - summary of the note (optional)</div>
<input type="text" name="title" id="title" size="60" value="<?php echo $info['title']; ?>" > <input type="text" name="title" id="title" size="60" value="<?php echo $info['title']; ?>" >
<br/> <br/>
<span class="error"&nbsp;<?php echo $errors['title']; ?></span> <span class="error">&nbsp;<?php echo $errors['title']; ?></span>
</div> </div>
<br/> <br/>
<textarea name="note" id="internal_note" cols="80" <textarea name="note" id="internal_note" cols="80"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment