Merge pull request #521 from Frenzie/master

WikipediaBridge: fix French Wikipedia
This commit is contained in:
Mitsu 2017-04-28 19:26:54 +02:00 committed by GitHub
commit c375ddd6ab
1 changed files with 2 additions and 2 deletions

View File

@ -236,11 +236,11 @@ class WikipediaBridge extends BridgeAbstract {
private function getContentsFr($html, $subject, $fullArticle){
switch($subject){
case WIKIPEDIA_SUBJECT_TFA:
$element = $html->find('div[id=accueil-lumieresur]', 0);
$element = $html->find('div[class=accueil_2017_cadre]', 0);
$this->addTodaysFeaturedArticleGeneric($element, $fullArticle, 'Lire la suite');
break;
case WIKIPEDIA_SUBJECT_DYK:
$element = $html->find('div[id=SaviezVous]', 0);
$element = $html->find('div[class=accueil_2017_cadre]', 2);
$this->addDidYouKnowGeneric($element, $fullArticle);
break;
default: