Merge pull request #2387 from Quix0r/fixes/html-errors
Some tags should not be self-closed
This commit is contained in:
commit
fd316fe720
|
@ -18,13 +18,13 @@
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{if $request}}
|
{{if $request}}
|
||||||
<form action="{{$request}}" method="post" />
|
<form action="{{$request}}" method="post">
|
||||||
{{else}}
|
{{else}}
|
||||||
<form action="dfrn_request/{{$nickname}}" method="post" />
|
<form action="dfrn_request/{{$nickname}}" method="post">
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{if $photo}}
|
{{if $photo}}
|
||||||
<img src="{{$photo}}" alt="" id="dfrn-request-photo">
|
<img src="{{$photo}}" alt="" id="dfrn-request-photo" />
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{if $url}}<dl><dt>{{$url_label}}</dt><dd><a target="blank" href="{{$zrl}}">{{$url}}</a></dd></dl>{{/if}}
|
{{if $url}}<dl><dt>{{$url_label}}</dt><dd><a target="blank" href="{{$zrl}}">{{$url}}</a></dd></dl>{{/if}}
|
||||||
|
|
Loading…
Reference in a new issue