Changeset 7076

Show
Ignore:
Timestamp:
02/27/08 23:43:22 (6 months ago)
Author:
ryan
Message:

Fix plugin version compare. Props mdawaffe. fixes #5978

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-admin/includes/update.php

    r6920 r7076  
    6363        } 
    6464 
    65         if ( $current->checked[ $file ] != $p['Version']
     65        if ( strval($current->checked[ $file ]) !== strval($p['Version'])
    6666            $plugin_changed = true; 
    6767    }