diff options
author | friendica <info@friendica.com> | 2011-11-24 16:42:12 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2011-11-24 16:42:12 -0800 |
commit | 9e8053e3bdb4669132a142cd2542956c01352ee5 (patch) | |
tree | e0768f3096b0b869872d085ecbef7e8165f7cea4 /view | |
parent | 8aae7f047d3d29b167ee2372c10978dc3f16f801 (diff) | |
download | volse-hubzilla-9e8053e3bdb4669132a142cd2542956c01352ee5.tar.gz volse-hubzilla-9e8053e3bdb4669132a142cd2542956c01352ee5.tar.bz2 volse-hubzilla-9e8053e3bdb4669132a142cd2542956c01352ee5.zip |
fixing conversation updates
Diffstat (limited to 'view')
-rw-r--r-- | view/conversation.tpl | 4 | ||||
-rw-r--r-- | view/theme/duepuntozero/conversation.tpl | 4 | ||||
-rw-r--r-- | view/theme/loozah/conversation.tpl | 4 | ||||
-rw-r--r-- | view/theme/testbubble/conversation.tpl | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/view/conversation.tpl b/view/conversation.tpl index 86445aab8..7d4e7d262 100644 --- a/view/conversation.tpl +++ b/view/conversation.tpl @@ -1,6 +1,6 @@ {{ for $threads as $thread }} -<div class="tread-wrapper"> - $thread +<div id="tread-wrapper-$thread.id" class="tread-wrapper"> + $thread.html </div> {{ endfor }} diff --git a/view/theme/duepuntozero/conversation.tpl b/view/theme/duepuntozero/conversation.tpl index 1a0fb33a8..33cedfb1e 100644 --- a/view/theme/duepuntozero/conversation.tpl +++ b/view/theme/duepuntozero/conversation.tpl @@ -1,6 +1,6 @@ {{ for $threads as $thread }} -<div class="tread-wrapper"> - $thread +<div id="tread-wrapper-$thread.id" class="tread-wrapper"> + $thread.html </div> {{ endfor }} diff --git a/view/theme/loozah/conversation.tpl b/view/theme/loozah/conversation.tpl index 1a0fb33a8..33cedfb1e 100644 --- a/view/theme/loozah/conversation.tpl +++ b/view/theme/loozah/conversation.tpl @@ -1,6 +1,6 @@ {{ for $threads as $thread }} -<div class="tread-wrapper"> - $thread +<div id="tread-wrapper-$thread.id" class="tread-wrapper"> + $thread.html </div> {{ endfor }} diff --git a/view/theme/testbubble/conversation.tpl b/view/theme/testbubble/conversation.tpl index 1a0fb33a8..33cedfb1e 100644 --- a/view/theme/testbubble/conversation.tpl +++ b/view/theme/testbubble/conversation.tpl @@ -1,6 +1,6 @@ {{ for $threads as $thread }} -<div class="tread-wrapper"> - $thread +<div id="tread-wrapper-$thread.id" class="tread-wrapper"> + $thread.html </div> {{ endfor }} |