closing tag is unneeded
This commit is contained in:
parent
6486a4757f
commit
5ae10473e3
1 changed files with 1 additions and 2 deletions
|
@ -85,8 +85,7 @@ class LinkImageTheme extends Themelet {
|
||||||
return "
|
return "
|
||||||
<tr>
|
<tr>
|
||||||
<td><label for='".$id."' title='Click to select the textbox'>$label</label></td>
|
<td><label for='".$id."' title='Click to select the textbox'>$label</label></td>
|
||||||
<td><input type='text' readonly='readonly' id='".$id."' name='".$id."'
|
<td><input type='text' readonly='readonly' id='".$id."' name='".$id."' value='".html_escape($content)."' onfocus='this.select();' /></td>
|
||||||
value='".html_escape($content)."' onfocus='this.select();'></input></td>
|
|
||||||
</tr>
|
</tr>
|
||||||
";
|
";
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue