Support

Account

Home Forums ACF PRO ACF PRO update bug

Solving

ACF PRO update bug

  • Hi guys,

    Elliot here from ACF.

    I’ve just tracked down and fixed a mischievous bug that may delay the ACF PRO plugin from updating. The bug only affects websites that have no other theme or plugin updates available at the time.

    If the ‘Custom Fields > Updates’ page is showing an update, but the ‘Plugins’ page doesn’t, worry no more!

    The fix is simple. Please edit the file: core/updates.php on line 92

    From:

    
    // bail early if no response (dashboard showed an error)
    if( empty($transient->response) ) return $transient;
    

    To:

    
    // bail early if no response (dashboard showed an error)
    if( !isset($transient->response) ) return $transient;
    

    Thanks to those who notified me of this issue and helped get it fixed!

Viewing 1 post (of 1 total)

The topic ‘ACF PRO update bug’ is closed to new replies.