| Comment | File | Size | Author |
|---|---|---|---|
| #22 | drupal-core_replace_theme_aggregator-2008970-22.patch | 1.37 KB | stephaneq |
| #22 | interdiff-20-22.txt | 680 bytes | stephaneq |
| #20 | drupal-core_replace_theme_aggregator-2008970-20.patch | 1.42 KB | stephaneq |
| #12 | twig-7563139-12.patch | 6.73 KB | adamcowboy |
| #6 | drupal-core_replace_theme_aggregator-2008970-6.patch | 6.88 KB | markie |
Comments
Comment #1
thedavidmeister commentedComment #2
markie commented3 files modified.
Comment #3
thedavidmeister commentedThis looks good to me.
Comment #4
star-szrThanks for working on this @markie!
I'd like to see better or more descriptive variable names for the render arrays…
I'd rather see this var called $feed_icon or $source_icon instead of $themed.
Comment #5
thedavidmeister commentedWe actually just updated the main issue summary:
Comment #6
markie commentedUpdated as requested.
Comment #7
eromero1 commentedTested @markie's patch and everything worked properly. When the aggregator was fed, it responded as requested. There were no apparent issues.
Comment #8
sbudker1 commentedTested @markie's patch and was successful when using the feed aggregator! Everything seemed to work normally and there were no visible problems.
Comment #9
alexpottThis should just be on one line
Comment #10
thedavidmeister commentedl() can take a renderable array for content now. no need to call drupal_render() on $image here.
Comment #11
adamcowboy commenteddibs!
Comment #12
adamcowboy commentedI fixed it (I think).
Comment #13
adamcowboy commentedComment #14
azinoman commenteddibs on review
Comment #15
azinoman commentedAggregator is working like we expect. I added a news feed and everything was working. Nice job Adam!
Comment #16
jenlamptonAnd nice job on the review azinoman!
Comment #17
alexpottCommitted 58c54c3 and pushed to 8.x. Thanks!
Comment #19
thedavidmeister commentedtheme() still exists in aggregator. See RSS.php for example.
Comment #20
stephaneqI found 2 instances left in 2 files
Comment #21
pplantinga commentedWhat if instead of #markup + drupal_render() we just use #theme?
$build['pager'] = array('#theme' => 'pager');Comment #22
stephaneqComment #23
pplantinga commentedLooks good to me!
I think it may be more appropriate to do this in #2046881: [meta] Avoid "early rendered" strings where beneficial to do so, build structured data to pass to drupal_render() once instead but at some point
return drupal_render($build)will most likely need to become justreturn $buildComment #24
webchickCommitted and pushed to 8.x. Thanks!