Skip to content
GitLab
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
cdf15908
Commit
cdf15908
authored
Nov 11, 2021
by
Dominik Hebeler
Browse files
making sure the date is no more than a year ago
parent
63d2944d
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
app/MetaGer.php
View file @
cdf15908
...
...
@@ -1094,6 +1094,19 @@ class MetaGer
$from
=
$tmp
;
$changed
=
true
;
}
# Bing only allows a maximum of 1 year in the past
# Verify the parameters
$yearAgo
=
Carbon
::
now
()
->
subYear
();
if
(
$from
<
$yearAgo
)
{
$from
=
clone
$yearAgo
;
$changed
=
true
;
}
if
(
$to
<
$yearAgo
)
{
$to
=
clone
$yearAgo
;
$changed
=
true
;
}
if
(
$changed
)
{
$oldParameters
=
$this
->
request
->
all
();
$oldParameters
[
"ff"
]
=
$from
->
format
(
"Y-m-d"
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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