Ignore:
Timestamp:
Aug 16, 2010, 4:42:02 PM (14 years ago)
Author:
patdenice
Message:

Fix bug with htmlspecialchars on plugins name.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/autoupdate/trunk/include/functions_remote.inc.php

    r6196 r6767  
    8686        if (!$plugins->plugin_version_compare($fs_plugin['version'], $plugin_info['revision_name']))
    8787        {
    88           if (in_array($fs_plugin['name'], $ignore_list))
     88          $fs_plugin_name = htmlspecialchars_decode($fs_plugin['name']);
     89
     90          if (in_array($fs_plugin_name, $ignore_list))
    8991          {
    90             array_push($new_ignore_list, $fs_plugin['name']);
     92            array_push($new_ignore_list, $fs_plugin_name);
    9193          }
    9294          else
Note: See TracChangeset for help on using the changeset viewer.