Author: ornicar2
Date: 2010-02-02 22:12:00 +0100 (Tue, 02 Feb 2010)
New Revision: 27451
Modified:
plugins/dmWidgetTwitterPlugin/modules/dmWidget/templates/_dmWidgetTwitterSearch.php
plugins/dmWidgetTwitterPlugin/modules/dmWidget/templates/_dmWidgetTwitterTimeline.php
Log:
[Diem][dmWidgetTwitterPlugin] replaced ?\194?\163-based helpers with new helpers
Modified:
plugins/dmWidgetTwitterPlugin/modules/dmWidget/templates/_dmWidgetTwitterSearch.php
===================================================================
---
plugins/dmWidgetTwitterPlugin/modules/dmWidget/templates/_dmWidgetTwitterSearch.php
2010-02-02 21:06:11 UTC (rev 27450)
+++
plugins/dmWidgetTwitterPlugin/modules/dmWidget/templates/_dmWidgetTwitterSearch.php
2010-02-02 21:12:00 UTC (rev 27451)
@@ -7,21 +7,21 @@
* - created_at: when the tweet was posted, timestamp
*/
-echo £o('ul');
+echo _open('ul');
foreach($tweets as $tweet)
{
- echo £('li',
+ echo _tag('li',
// link to the user page on twitter
- £link('http://twitter.com/'.$tweet['from_user'])
+ _link('http://twitter.com/'.$tweet['from_user'])
->text($tweet['from_user'])
->set('.tweet_from_user').
// render tweet text
- £('p.tweet_text', auto_link_text($tweet['text']))
+ _tag('p.tweet_text', auto_link_text($tweet['text']))
);
}
-echo £c('ul');
\ No newline at end of file
+echo _close('ul');
\ No newline at end of file
Modified:
plugins/dmWidgetTwitterPlugin/modules/dmWidget/templates/_dmWidgetTwitterTimeline.php
===================================================================
---
plugins/dmWidgetTwitterPlugin/modules/dmWidget/templates/_dmWidgetTwitterTimeline.php
2010-02-02 21:06:11 UTC (rev 27450)
+++
plugins/dmWidgetTwitterPlugin/modules/dmWidget/templates/_dmWidgetTwitterTimeline.php
2010-02-02 21:12:00 UTC (rev 27451)
@@ -6,19 +6,19 @@
* - created_at: when the tweet was posted, timestamp
*/
-echo £o('ul');
+echo _open('ul');
foreach($tweets as $tweet)
{
- echo £('li',
+ echo _tag('li',
// render tweet text
- £('p.tweet_text', auto_link_text($tweet['text'])).
+ _tag('p.tweet_text', auto_link_text($tweet['text'])).
// render tweet date
- £('p.tweet_date', format_date($tweet['created_at'], 'D'))
+ _tag('p.tweet_date', format_date($tweet['created_at'], 'D'))
);
}
-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.