To participate you must create an account on apostrophenow.org. If you have already done so, click Login.

Show
Ignore:
Timestamp:
09/01/10 11:59:43 (21 months ago)
Author:
wjohnald
Message:

this commit resolves tickets: #144 and #347

Location:
plugins/apostrophePlugin/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • plugins/apostrophePlugin/trunk

  • plugins/apostrophePlugin/trunk/modules/aFeedSlot/templates/_aFeedItem.php

    r1914 r2107  
    11<?php 
     2  // Pull in the Symfony Text Helper 
     3  sfContext::getInstance()->getConfiguration()->loadHelpers(array('Text')); 
     4 
    25  // Compatible with sf_escaping_strategy: true 
    36  $attributes = isset($attributes) ? $sf_data->getRaw('attributes') : null; 
     
    1922    <?php $date = $feedItem->getPubDate() ?> 
    2023    <li class="date"><?php echo $dateFormat ? date($dateFormat, $date) : aDate::pretty($date) . ' ' . aDate::time($date) ?></li> 
    21     <li class="description"><?php echo aHtml::simplify($feedItem->getDescription(), $markup, false, (isset($attributes)? $attributes:false), (isset($styles)? $styles:false)) ?></li> 
     24    <li class="description"><?php echo auto_link_text(aHtml::simplify($feedItem->getDescription(), $markup, false, (isset($attributes)? $attributes:false), (isset($styles)? $styles:false))) ?></li> 
    2225  </ul> 
    2326</li>