Compare commits

..

No commits in common. "36b0c570aaa27cd8ca7d7bc1ec9232339afc5d4e" and "0180cf5224c8287975b1a091612887a9ca0256f6" have entirely different histories.

1 changed files with 31 additions and 46 deletions

View File

@ -403,7 +403,7 @@ class brave{
$nextpage = $nextpage =
$this->fuckhtml $this->fuckhtml
->getElementsByClassName("button", "a"); ->getElementsByClassName("btn", "a");
if(count($nextpage) !== 0){ if(count($nextpage) !== 0){
@ -1777,21 +1777,7 @@ class brave{
$nextpage = $nextpage =
$this->fuckhtml $this->fuckhtml
->getElementById( ->getElementsByClassName("btn", "a");
"pagination",
"div"
);
if($nextpage){
$this->fuckhtml->load($nextpage);
$nextpage =
$this->fuckhtml
->getElementsByClassName(
"button",
"a"
);
if(count($nextpage) !== 0){ if(count($nextpage) !== 0){
@ -1829,7 +1815,6 @@ class brave{
); );
} }
} }
}
return null; return null;
} }