diff options
author | friendica <info@friendica.com> | 2013-05-09 22:04:30 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-05-09 22:04:30 -0700 |
commit | e1c6b776c4c388b4671c0838c9d24feac42857c2 (patch) | |
tree | 5924dd88c7cbc73a758c3c725bb8c4aa678932e5 /view | |
parent | d75be6dbe6b4fa062cf44fdcc92fe3290f322d40 (diff) | |
download | volse-hubzilla-e1c6b776c4c388b4671c0838c9d24feac42857c2.tar.gz volse-hubzilla-e1c6b776c4c388b4671c0838c9d24feac42857c2.tar.bz2 volse-hubzilla-e1c6b776c4c388b4671c0838c9d24feac42857c2.zip |
fix timeago on search items, and bring back app display for wall items - which took a bit of re-arranging of a lot of other stuff
Diffstat (limited to 'view')
-rwxr-xr-x | view/tpl/conv_item.tpl | 2 | ||||
-rwxr-xr-x | view/tpl/search_item.tpl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/view/tpl/conv_item.tpl b/view/tpl/conv_item.tpl index a03b79a90..91a4bd35d 100755 --- a/view/tpl/conv_item.tpl +++ b/view/tpl/conv_item.tpl @@ -43,7 +43,7 @@ </div> <div class="wall-item-author"> <a href="{{$item.profile_url}}" title="{{$item.linktitle}}" class="wall-item-name-link"><span class="wall-item-name{{$item.sparkle}}" id="wall-item-name-{{$item.id}}" >{{$item.name}}</span></a>{{if $item.owner_url}} {{$item.to}} <a href="{{$item.owner_url}}" title="{{$item.olinktitle}}" class="wall-item-name-link"><span class="wall-item-name{{$item.osparkle}}" id="wall-item-ownername-{{$item.id}}">{{$item.owner_name}}</span></a> {{$item.vwall}}{{/if}}<br /> - <div class="wall-item-ago" id="wall-item-ago-{{$item.id}}" title="{{$item.isotime}}">{{$item.localtime}}</div> + <div class="wall-item-ago" id="wall-item-ago-{{$item.id}}"><span class="autotime" title="{{$item.isotime}}">{{$item.localtime}}</span>{{if $item.app}}<span class="item.app">{{$item.str_app}}</span>{{/if}}</div> </div> <div class="wall-item-content" id="wall-item-content-{{$item.id}}" > <div class="wall-item-title" id="wall-item-title-{{$item.id}}">{{$item.title}}</div> diff --git a/view/tpl/search_item.tpl b/view/tpl/search_item.tpl index debc1d89d..4814187f9 100755 --- a/view/tpl/search_item.tpl +++ b/view/tpl/search_item.tpl @@ -30,7 +30,7 @@ <div class="wall-item-author"> <a href="{{$item.profile_url}}" title="{{$item.linktitle}}" class="wall-item-name-link"><span class="wall-item-name{{$item.sparkle}}" id="wall-item-name-{{$item.id}}" >{{$item.name}}</span></a> - <div id="wall-item-ago-{{$item.id}}" class="wall-item-ago"><abbr class="wall-item-ago-time" title="{{$item.isotime}}">{{$item.localtime}}</abbr>{{if $item.app}}<span class="item.app">{{$item.str_app}}</span>{{/if}}</div> + <div class="wall-item-ago" id="wall-item-ago-{{$item.id}}"><span class="autotime" title="{{$item.isotime}}">{{$item.localtime}}</span>{{if $item.app}}<span class="item.app">{{$item.str_app}}</span>{{/if}}</div> </div> <div class="wall-item-content" id="wall-item-content-{{$item.id}}" > |