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 /view/theme | |
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 $
Diffstat (limited to 'view/theme')
-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 |
3 files changed, 3 insertions, 3 deletions
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" /> |