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
a0acabb3
Commit
a0acabb3
authored
Apr 03, 2017
by
Dominik Hebeler
Browse files
PHP7 Bug gefixt
parent
491e71e8
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
app/Models/Result.php
View file @
a0acabb3
...
...
@@ -61,9 +61,9 @@ class Result
$this
->
strippedDomain
=
$this
->
getStrippedDomain
(
$this
->
strippedHost
);
$this
->
strippedLink
=
$this
->
getStrippedLink
(
$this
->
anzeigeLink
);
$this
->
rank
=
0
;
$this
->
partnershop
=
$additionalInformation
[
"partnershop"
]
?
?
false
;
$this
->
image
=
$additionalInformation
[
"image"
]
?
?
""
;
$this
->
price
=
$additionalInformation
[
"price"
]
?
?
0
;
$this
->
partnershop
=
isset
(
$additionalInformation
[
"partnershop"
]
)
?
$additionalInformation
[
"partnershop"
]
:
false
;
$this
->
image
=
isset
(
$additionalInformation
[
"image"
]
)
?
$additionalInformation
[
"image"
]
:
""
;
$this
->
price
=
isset
(
$additionalInformation
[
"price"
]
)
?
$additionalInformation
[
"price"
]
:
0
;
$this
->
additionalInformation
=
$additionalInformation
;
}
...
...
Write
Preview
Markdown
is supported
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