Author: ornicar2
Date: 2010-02-02 22:13:07 +0100 (Tue, 02 Feb 2010)
New Revision: 27453
Modified:
plugins/dmWidgetFeedReaderPlugin/modules/dmWidget/templates/_dmWidgetFeedReaderShow.php
Log:
[Diem][dmWidgetFeedReaderPlugin] replaced ?\194?\163-based helpers with new
helpers
Modified:
plugins/dmWidgetFeedReaderPlugin/modules/dmWidget/templates/_dmWidgetFeedReaderShow.php
===================================================================
---
plugins/dmWidgetFeedReaderPlugin/modules/dmWidget/templates/_dmWidgetFeedReaderShow.php
2010-02-02 21:12:10 UTC (rev 27452)
+++
plugins/dmWidgetFeedReaderPlugin/modules/dmWidget/templates/_dmWidgetFeedReaderShow.php
2010-02-02 21:13:07 UTC (rev 27453)
@@ -8,19 +8,19 @@
* - pub_date: item publication date (timestamp)
*/
-echo £o('ul');
+echo _open('ul');
foreach($items as $item)
{
- echo £('li',
+ echo _tag('li',
// link to the feed page
- £link($item['link'])->text($item['title'])->set('.feed_item_link').
+ _link($item['link'])->text($item['title'])->set('.feed_item_link').
// render truncated feed content
- £('div.feed_item_content',
dmString::truncate(strip_tags($item['content']), 100))
+ _tag('div.feed_item_content',
dmString::truncate(strip_tags($item['content']), 100))
);
}
-echo £c('ul');
\ No newline at end of file
+echo _close('ul');
\ No newline at end of file
--
You received this message because you are subscribed to the Google Groups
"symfony SVN" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/symfony-svn?hl=en.