Hello,

It seems Plugin Manager does not include a security update in the available updates list.

Anyone else getting this?

Comments

DrewMathers’s picture

I am also seeing this in 6x-1.9. Other updates work fine, but security updates don't show up.

Anonymous’s picture

Version: 6.x-2.x-dev » 6.x-1.x-dev
Priority: Normal » Critical
Issue tags: +DRUPAL-6--1-11
psicomante’s picture

me too has this issue. 6x-1.10

traceelements’s picture

Me too. I have a webform security update that needs to be run, but it's not showing up in the plugin manager as an available update.

philbar’s picture

sinasalek’s picture

Same here

matteoraggi’s picture

Me too using the last stable version and drupal 6.14, but I was thinking that this is not a problem, just if there are some security fixes, could be that it need special upgrade, for example to delete files and then reupload or some secial dependencies to read irst to upgrade automatically, for example panels 3 need many details to read first to upgrade from 2.

traceelements’s picture

I've just been doing a search in the plugin manager for the module that needs to be updated, and then installing the new version. It's not as simple as I would like it to be in order for my clients to run their own updates, but it's easier than going to drupal, downloading the new version, unzipping the module, and then uploading the new version.

tallsimon’s picture

I would really like to be able to install security updates like any other updates too!

DrewMathers’s picture

Version: 6.x-1.x-dev » 6.x-1.9
Component: User interface » Code
Status: Active » Needs review

In plugin_manager_admin.inc change line 533

from:   if ($project['status'] == UPDATE_NOT_CURRENT) {

to:    if ($project['status'] == UPDATE_NOT_CURRENT | $project['status'] == UPDATE_NOT_SECURE ) {

Tested and works in 6.x-1.9

DrewMathers’s picture

Version: 6.x-1.9 » 6.x-1.10

Sorry, got the version number wrong. Actually tested in 6.x-1.10

Anonymous’s picture

Status: Needs review » Fixed

Thanks DrewMathers! That has just been committed.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

Dimm’s picture

+1

modctek’s picture

Will this ever be pushed to the production version? I see the 6.x-dev is not being updated.

modctek’s picture

Also noticed that updates marked as "Not Supported" are also omitted. If you add another or clause to the above on line 533, it will pick up those updates as well:

if ($project['status'] == UPDATE_NOT_CURRENT | $project['status'] == UPDATE_NOT_SECURE ) | $project['status'] == UPDATE_NOT_SUPPORTED) {

Keep in mind, I don't know if the above is recommended, as the "Not Supported" status is a different animal from the previous 2 statuses.

DrewMathers’s picture

Status: Closed (fixed) » Fixed

modctek,

Thanks, I have included your contribution to the fix for #832464: Core update listed

Status: Fixed » Closed (fixed)
Issue tags: -DRUPAL-6--1-11

Automatically closed -- issue fixed for 2 weeks with no activity.