radishconcepts / WordPress-GitHub-Plugin-Updater

This class is meant to be used with your Github hosted WordPress plugins. The purpose of the class is to allow your WordPress plugin to be updated whenever you push out a new version of your plugin; similarly to the experience users know and love with the WordPress.org plugin repository.
https://github.com/jkudish/WordPress-GitHub-Plugin-Updater
822 stars 195 forks source link

Readme file not displaying on wordpress. #63

Open vinfehring opened 10 years ago

vinfehring commented 10 years ago

When the WordPress updater calls the update information when a user clicks on "version info", it displays an error, and does not allow for the viewing of the whats new info from the ready.

coenjacobs commented 9 years ago

I'm going to write a quick fix for this in the upcoming 1.5.1 fix release.

CodersPress commented 9 years ago

CHANGE from updater.php

    // Check if this call API is for the right plugin
    if ( !isset( $response->slug ) || $response->slug != $this->config['slug'] )
        return false;

TO

    // Check if this call API is for the right plugin
    if ( !isset( $response->slug ) || $response->slug != $this->config['proper_folder_name'] )
        return false;