aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/photo_view.tpl
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-10-27 19:21:41 -0700
committerfriendica <info@friendica.com>2014-10-27 19:23:40 -0700
commit9cc76cb33da489c01731ecb5195f8bb3d51ce513 (patch)
treeab725c297ed5feba03826ead5126b2d9cb078183 /view/tpl/photo_view.tpl
parent1b53d1c1d32072c71451cfd1a49b89ecfcd8b615 (diff)
downloadvolse-hubzilla-9cc76cb33da489c01731ecb5195f8bb3d51ce513.tar.gz
volse-hubzilla-9cc76cb33da489c01731ecb5195f8bb3d51ce513.tar.bz2
volse-hubzilla-9cc76cb33da489c01731ecb5195f8bb3d51ce513.zip
several unrelated things - auto_follow wasn't working for new accounts, error returned in private mention to a collection, and added auto-completion to photo tags; though it only matches people so the hover text is now wrong. Also made the photo edit form XHTML (XML) compliant.
Diffstat (limited to 'view/tpl/photo_view.tpl')
-rwxr-xr-xview/tpl/photo_view.tpl16
1 files changed, 8 insertions, 8 deletions
diff --git a/view/tpl/photo_view.tpl b/view/tpl/photo_view.tpl
index 786145691..54e15de74 100755
--- a/view/tpl/photo_view.tpl
+++ b/view/tpl/photo_view.tpl
@@ -33,9 +33,9 @@
</div>
<div id="photo-edit-edit">
<form action="photos/{{$edit.nickname}}/{{$edit.resource_id}}" method="post" id="photo_edit_form">
- <input type="hidden" name="item_id" value="{{$edit.item_id}}">
+ <input type="hidden" name="item_id" value="{{$edit.item_id}}" />
<label id="photo-edit-albumname-label" for="photo-edit-albumname">{{$edit.newalbum}}</label>
- <input id="photo-edit-albumname" type="text" name="albname" value="{{$edit.album}}" list="dl-albums">
+ <input id="photo-edit-albumname" type="text" name="albname" value="{{$edit.album}}" list="dl-albums" />
{{if $edit.albums}}
<datalist id="dl-albums">
{{foreach $edit.albums as $al}}
@@ -47,18 +47,18 @@
{{/if}}
<div id="photo-edit-albumname-end"></div>
<label id="photo-edit-caption-label" for="photo-edit-caption">{{$edit.capt_label}}</label>
- <input id="photo-edit-caption" type="text" name="desc" value="{{$edit.caption}}">
+ <input id="photo-edit-caption" type="text" name="desc" value="{{$edit.caption}}" />
<div id="photo-edit-caption-end"></div>
<label id="photo-edit-tags-label" for="photo-edit-newtag" >{{$edit.tag_label}}</label>
- <input name="newtag" id="photo-edit-newtag" title="{{$edit.help_tags}}" type="text">
+ <input name="newtag" id="photo-edit-newtag" title="{{$edit.help_tags}}" type="text" />
<div id="photo-edit-tags-end"></div>
<div id="photo-edit-rotate-wrapper">
<div id="photo-edit-rotate-label">
{{$edit.rotatecw}}<br>
{{$edit.rotateccw}}
</div>
- <input type="radio" name="rotate" value="1"><br>
- <input type="radio" name="rotate" value="2">
+ <input type="radio" name="rotate" value="1" /><br>
+ <input type="radio" name="rotate" value="2" />
</div>
<div id="photo-edit-rotate-end"></div>
<div id="settings-default-perms" class="settings-default-perms">
@@ -69,8 +69,8 @@
</div>
<br/>
<div id="settings-default-perms-end"></div>
- <input id="photo-edit-submit-button" type="submit" name="submit" value="{{$edit.submit}}">
- <input id="photo-edit-delete-button" type="submit" name="delete" value="{{$edit.delete}}" onclick="return confirmDelete();">
+ <input id="photo-edit-submit-button" type="submit" name="submit" value="{{$edit.submit}}" />
+ <input id="photo-edit-delete-button" type="submit" name="delete" value="{{$edit.delete}}" onclick="return confirmDelete();" />
<div id="photo-edit-end"></div>
</form>
</div>