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
a895c650
Commit
a895c650
authored
Feb 12, 2019
by
Dominik Hebeler
Browse files
Fixed a bug with disabled search engines
parent
0f169c87
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
app/MetaGer.php
View file @
a895c650
...
...
@@ -540,7 +540,7 @@ class MetaGer
foreach
(
$this
->
sumaFile
->
foki
->
{
$this
->
fokus
}
->
sumas
as
$suma
)
{
# Check if this engine is disabled and can't be used
$disabled
=
empty
(
$
suma
->
disabled
)
?
false
:
$suma
->
disabled
;
$disabled
=
empty
(
$
this
->
sumaFile
->
sumas
->
{
$suma
}
->
disabled
)
?
false
:
$this
->
sumaFile
->
sumas
->
{
$suma
}
->
disabled
;
if
(
$disabled
)
{
continue
;
}
...
...
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