diff options
author | friendica <info@friendica.com> | 2012-04-24 18:23:48 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-04-24 18:23:48 -0700 |
commit | 5af80dbb89a2ce649b59439784e5166f63e4979d (patch) | |
tree | d4042bf37b7354545232b2d0ce925ed6179f4d67 /view/theme/duepuntozero | |
parent | 139c2c1bbdffeb8df07004a9fdf919adf0bac72c (diff) | |
download | volse-hubzilla-5af80dbb89a2ce649b59439784e5166f63e4979d.tar.gz volse-hubzilla-5af80dbb89a2ce649b59439784e5166f63e4979d.tar.bz2 volse-hubzilla-5af80dbb89a2ce649b59439784e5166f63e4979d.zip |
restore qcomment selector
Diffstat (limited to 'view/theme/duepuntozero')
-rwxr-xr-x | view/theme/duepuntozero/comment_item.tpl | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/view/theme/duepuntozero/comment_item.tpl b/view/theme/duepuntozero/comment_item.tpl index 375aff8fa..84b9597e8 100755 --- a/view/theme/duepuntozero/comment_item.tpl +++ b/view/theme/duepuntozero/comment_item.tpl @@ -40,10 +40,12 @@ <div class="comment-edit-bb-end"></div> <textarea id="comment-edit-text-$id" class="comment-edit-text-empty" name="body" onFocus="commentOpen(this,$id);cmtBbOpen($id);" onBlur="commentClose(this,$id);" >$comment</textarea> {{ if $qcomment }} - {{ for $qcomment as $qc }} - <span class="fakelink qcomment" onclick="commentInsert(this,$id); return false;" >$qc</span> - + <select id="qcomment-select-$id" name="qcomment-$id" class="qcomment" onchange="qCommentInsert(this,$id);" > + <option value=""></option> + {{ for $qcomment as $qc }} + <option value="$qc">$qc</option> {{ endfor }} + </select> {{ endif }} <div class="comment-edit-text-end"></div> |