Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Merge requests
!1543
Issue
#2977515
: [ignore] tedbow patch testing
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Issue
#2977515
: [ignore] tedbow patch testing
issue/drupal-2977515:2977515-remove-update-latest-dev
into
9.4.x
Overview
0
Commits
11
Pipelines
0
Changes
2
Closed
Ted Bowman
requested to merge
issue/drupal-2977515:2977515-remove-update-latest-dev
into
9.4.x
3 years ago
Overview
0
Commits
11
Pipelines
0
Changes
2
Expand
0
0
Merge request reports
Compare
9.4.x
version 5
28319cc2
3 years ago
version 4
983fc8b5
3 years ago
version 3
2cf129b9
3 years ago
version 2
86b54d5c
3 years ago
version 1
b738dff2
3 years ago
9.4.x (base)
and
latest version
latest version
027fc521
11 commits,
3 years ago
version 5
28319cc2
9 commits,
3 years ago
version 4
983fc8b5
8 commits,
3 years ago
version 3
2cf129b9
6 commits,
3 years ago
version 2
86b54d5c
4 commits,
3 years ago
version 1
b738dff2
2 commits,
3 years ago
2 files
+
2
−
44
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
core/modules/update/update.compare.inc
+
1
−
8
Options
@@ -486,14 +486,7 @@ function update_calculate_project_update_status(&$project_data, $available) {
// timestamp of the tarball itself (which are usually off by 1 or 2
// seconds) so that we don't flag that as a new release.
if
(
$project_data
[
'install_type'
]
==
'dev'
)
{
if
(
empty
(
$project_data
[
'datestamp'
]))
{
// We don't have current timestamp info, so we can't know.
continue
;
}
elseif
(
$release
->
getDate
()
&&
$project_data
[
'datestamp'
]
+
100
>
$release
->
getDate
())
{
// We're newer than this, so we can skip it.
continue
;
}
continue
;
}
if
(
$release
->
isSecurityRelease
())
{
Loading