forked from blallo/rss-bridge
LesJoiesDuCode/TheCodingLove: Fix author format
This commit is contained in:
parent
8e44a01b2a
commit
25bc285083
2 changed files with 2 additions and 2 deletions
|
@ -29,7 +29,7 @@ class LesJoiesDuCodeBridge extends BridgeAbstract{
|
|||
}
|
||||
$content = $temp->innertext;
|
||||
|
||||
$auteur = $temp->find('.c1 em', 0);
|
||||
$auteur = $temp->find('i', 0);
|
||||
$pos = strpos($auteur->innertext, "by");
|
||||
|
||||
if($pos > 0)
|
||||
|
|
|
@ -29,7 +29,7 @@ class TheCodingLoveBridge extends BridgeAbstract{
|
|||
}
|
||||
$content = $temp->innertext;
|
||||
|
||||
$auteur = $temp->find('.c1 em', 0);
|
||||
$auteur = $temp->find('i', 0);
|
||||
$pos = strpos($auteur->innertext, "by");
|
||||
|
||||
if($pos > 0)
|
||||
|
|
Loading…
Reference in a new issue