diff options
author | Simon <simon@kisikew.org> | 2012-03-02 09:28:04 -0800 |
---|---|---|
committer | Simon <simon@kisikew.org> | 2012-03-02 09:28:04 -0800 |
commit | e2e9050d748a5fca39ded6ca480a113ddca3a386 (patch) | |
tree | 3d3e99fc14b5ba04aa9caa613acefb2c51c4ad3a | |
parent | d61ee3760dd3fcdfe0ec30887e8ac65290b91573 (diff) | |
parent | 9c698b1a60024a83982534ecf16409d03ff1e813 (diff) | |
download | volse-hubzilla-e2e9050d748a5fca39ded6ca480a113ddca3a386.tar.gz volse-hubzilla-e2e9050d748a5fca39ded6ca480a113ddca3a386.tar.bz2 volse-hubzilla-e2e9050d748a5fca39ded6ca480a113ddca3a386.zip |
Merge pull request #58 from simonlnu/master
fix for comment-wwedit-wrapper; CSS class in tpl had a stray $
-rwxr-xr-x | images/icons/lock.png.tmp | bin | 8213 -> 0 bytes | |||
-rwxr-xr-x | view/comment_item.tpl | 2 | ||||
-rwxr-xr-x | view/theme/duepuntozero/comment_item.tpl | 2 | ||||
-rwxr-xr-x | view/theme/loozah/comment_item.tpl | 2 | ||||
-rwxr-xr-x | view/theme/testbubble/comment_item.tpl | 2 |
5 files changed, 4 insertions, 4 deletions
diff --git a/images/icons/lock.png.tmp b/images/icons/lock.png.tmp Binary files differdeleted file mode 100755 index 7e58ead2e..000000000 --- a/images/icons/lock.png.tmp +++ /dev/null diff --git a/view/comment_item.tpl b/view/comment_item.tpl index c992593f8..cde4ca3ca 100755 --- a/view/comment_item.tpl +++ b/view/comment_item.tpl @@ -1,4 +1,4 @@ - <div class="comment-$wwedit-wrapper" id="comment-edit-wrapper-$id" style="display: block;"> + <div class="comment-wwedit-wrapper" id="comment-edit-wrapper-$id" style="display: block;"> <form class="comment-edit-form" id="comment-edit-form-$id" action="item" method="post" onsubmit="post_comment($id); return false;"> <input type="hidden" name="type" value="$type" /> <input type="hidden" name="profile_uid" value="$profile_uid" /> diff --git a/view/theme/duepuntozero/comment_item.tpl b/view/theme/duepuntozero/comment_item.tpl index b29735227..3503c3843 100755 --- a/view/theme/duepuntozero/comment_item.tpl +++ b/view/theme/duepuntozero/comment_item.tpl @@ -1,4 +1,4 @@ - <div class="comment-$wwedit-wrapper" id="comment-edit-wrapper-$id" style="display: block;"> + <div class="comment-wwedit-wrapper" id="comment-edit-wrapper-$id" style="display: block;"> <form class="comment-edit-form" id="comment-edit-form-$id" action="item" method="post" onsubmit="post_comment($id); return false;"> <input type="hidden" name="type" value="$type" /> <input type="hidden" name="profile_uid" value="$profile_uid" /> diff --git a/view/theme/loozah/comment_item.tpl b/view/theme/loozah/comment_item.tpl index b29735227..3503c3843 100755 --- a/view/theme/loozah/comment_item.tpl +++ b/view/theme/loozah/comment_item.tpl @@ -1,4 +1,4 @@ - <div class="comment-$wwedit-wrapper" id="comment-edit-wrapper-$id" style="display: block;"> + <div class="comment-wwedit-wrapper" id="comment-edit-wrapper-$id" style="display: block;"> <form class="comment-edit-form" id="comment-edit-form-$id" action="item" method="post" onsubmit="post_comment($id); return false;"> <input type="hidden" name="type" value="$type" /> <input type="hidden" name="profile_uid" value="$profile_uid" /> diff --git a/view/theme/testbubble/comment_item.tpl b/view/theme/testbubble/comment_item.tpl index bc75eb1a6..4754a1eb7 100755 --- a/view/theme/testbubble/comment_item.tpl +++ b/view/theme/testbubble/comment_item.tpl @@ -1,4 +1,4 @@ - <div class="comment-$wwedit-wrapper" id="comment-edit-wrapper-$id" style="display: block;"> + <div class="comment-wwedit-wrapper" id="comment-edit-wrapper-$id" style="display: block;"> <form class="comment-edit-form" id="comment-edit-form-$id" action="item" method="post" onsubmit="post_comment($id); return false;"> <input type="hidden" name="type" value="$type" /> <input type="hidden" name="profile_uid" value="$profile_uid" /> |