mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 17:19:37 +00:00
[Wikipedia] Use entire entry as title for 'Did you know'
This commit is contained in:
parent
04b4dd1db9
commit
1cfb8c02a0
@ -191,8 +191,10 @@ class WikipediaBridge extends BridgeAbstract{
|
||||
private function AddDidYouKnowGeneric($element, $fullArticle){
|
||||
foreach($element->find('ul', 0)->find('li') as $entry){
|
||||
$item = new \Item();
|
||||
|
||||
// We can only use the first anchor, there is no way of finding the 'correct' one if there are multiple
|
||||
$item->uri = $this->uri . $entry->find('a', 0)->href;
|
||||
$item->title = $entry->find('a', 0)->title;
|
||||
$item->title = strip_tags($entry->innertext);
|
||||
|
||||
if(!$fullArticle)
|
||||
$item->content = $this->ReplaceURIInHTMLElement($entry);
|
||||
|
Loading…
Reference in New Issue
Block a user