Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
open-source
MetaGer
Commits
b9ffd9b0
Commit
b9ffd9b0
authored
Jul 14, 2021
by
Dominik Hebeler
Browse files
fixed yacy pagination
parent
bf375c43
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
app/Models/parserSkripte/Yacy.php
View file @
b9ffd9b0
...
...
@@ -62,9 +62,10 @@ class Yacy extends Searchengine
}
if
(
$resultCount
>
0
){
$next
=
new
Yacy
(
$this
->
name
,
$this
->
engine
,
$metager
);
$next
->
getString
.
=
"&startRecord="
.
((
$metager
->
getPage
()
+
1
)
*
10
);
$next
->
hash
=
md5
(
$next
->
engine
->
host
.
$next
->
getString
.
$next
->
engine
->
port
.
$next
->
name
);
$next
=
clone
$this
;
$next
->
engine
->
{
"get-parameter"
}[
"startRecord"
]
=
$this
->
engine
->
{
"get-parameter"
}[
"startRecord"
]
+
10
;
$next
->
getString
=
$this
->
generateGetString
(
$metager
->
getQ
());
$next
->
updateHash
();
$this
->
next
=
$next
;
}
}
catch
(
\
Exception
$e
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment