Skip to content
Snippets Groups Projects
Commit e84819f5 authored by Tim Steiner's avatar Tim Steiner
Browse files

Removing accidental use of short tags

parent e3f6093b
No related branches found
Tags
No related merge requests found
......@@ -630,14 +630,14 @@
<input type="radio"
name="type"
value="proposed"
<?php if($this->course->type == 'proposed') { ?>checked="checked"<? } ?> />
<?php if($this->course->type == 'proposed') { ?>checked="checked"<?php } ?> />
</label>
<label>
Official:
<input type="radio"
name="type"
value="official"
<?php if($this->course->type == 'official') { ?>checked="checked"<? } ?> />
<?php if($this->course->type == 'official') { ?>checked="checked"<?php } ?> />
</label>
</fieldset>
......@@ -648,14 +648,14 @@
<input type="radio"
name="removed"
value="no"
<?php if($this->course->removed == 'no') { ?>checked="checked"<? } ?> />
<?php if($this->course->removed == 'no') { ?>checked="checked"<?php } ?> />
</label>
<label>
Removed:
<input type="radio"
name="removed"
value="yes"
<?php if($this->course->removed == 'yes') { ?>checked="checked"<? } ?> />
<?php if($this->course->removed == 'yes') { ?>checked="checked"<?php } ?> />
</label>
</fieldset>
</div>
......
......@@ -253,7 +253,7 @@
$pendingHtmlShort = htmlentities(substr($pending, 0, 13), null, 'UTF-8');
?>
<abbr title="<?php echo $pendingHtml; ?>"><?php echo $pendingHtmlShort; ?>...</abbr>
<? } ?>
<?php } ?>
</td>
<td>
<?php
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment