mirror of
https://git.lolcat.ca/lolcat/4get.git
synced 2025-07-20 21:28:57 -04:00
brave pagination fix
This commit is contained in:
parent
f9f3c919d6
commit
47a7a2a224
1 changed files with 46 additions and 31 deletions
|
@ -403,7 +403,7 @@ class brave{
|
|||
|
||||
$nextpage =
|
||||
$this->fuckhtml
|
||||
->getElementsByClassName("btn", "a");
|
||||
->getElementsByClassName("button", "a");
|
||||
|
||||
if(count($nextpage) !== 0){
|
||||
|
||||
|
@ -1777,7 +1777,21 @@ class brave{
|
|||
|
||||
$nextpage =
|
||||
$this->fuckhtml
|
||||
->getElementsByClassName("btn", "a");
|
||||
->getElementById(
|
||||
"pagination",
|
||||
"div"
|
||||
);
|
||||
|
||||
if($nextpage){
|
||||
|
||||
$this->fuckhtml->load($nextpage);
|
||||
|
||||
$nextpage =
|
||||
$this->fuckhtml
|
||||
->getElementsByClassName(
|
||||
"button",
|
||||
"a"
|
||||
);
|
||||
|
||||
if(count($nextpage) !== 0){
|
||||
|
||||
|
@ -1815,6 +1829,7 @@ class brave{
|
|||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue