Posted by mustafau on June 30, 2008 at 8:30am
Jump to:
| Project: | New Aggregator for Drupal core |
| Version: | 7.x-0.1-alpha3 |
| Component: | Code |
| Category: | task |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed (won't fix) |
Issue Summary
Consider passing arguments to the _syndication_parser_choose function as an array.
Instead of:
<?php
$item->title = _syndication_parser_choose("{$news->title}", "{$dc->title}");
?>consider following:
<?php
$item->title = _syndication_parser_choose(array("{$news->title}", "{$dc->title}"));
?>
Comments
#1