Ignore:
Timestamp:
Jul 1, 2008, 4:09:21 AM (16 years ago)
Author:
rvelices
Message:
  • remember me cookie security improvement (the time when the cookie was generated is saved and checked in range [now-remember_me_length; now]
  • tags improvements
    • pass to templates all fields in table #tags (handy for plugins such as type tags)
    • fix issue with tag letter when first letter is accentuated (utf-8)
    • tags are sorted on url_name instead of name (accentuated first letter chars are the same as without accent)
    • better use of columns in by letter display mode
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/template/yoga/tags.tpl

    r2396 r2409  
    2121  <ul id="fullTagCloud">
    2222    {foreach from=$tags item=tag}
    23     <li><a href="{$tag.URL}" class="{$tag.CLASS}" title="{$tag.TITLE}">{$tag.NAME}</a></li>
     23    <li><a href="{$tag.URL}" class="tagLevel{$tag.level}" title="{$tag.counter}">{$tag.name}</a></li>
    2424    {/foreach}
    2525  </ul>
     
    3636      {foreach from=$letter.tags item=tag}
    3737      <tr class="tagLine">
    38         <td><a href="{$tag.URL}">{$tag.NAME}</a></td>
    39         <td class="nbEntries">{$pwg->l10n_dec('%d element', '%d elements', $tag.COUNTER)}</td>
     38        <td><a href="{$tag.URL}">{$tag.name}</a></td>
     39        <td class="nbEntries">{$pwg->l10n_dec('%d element', '%d elements', $tag.counter)}</td>
    4040      </tr>
    4141      {/foreach}
Note: See TracChangeset for help on using the changeset viewer.