Hello all,
I just notice a little error in the include/class.plugin.php around line 588 :
function __onload() {
$this->info = PluginManager::getInfoForPath(INCLUDE_DIR.$this->ht['install_path'],
$this->isPhar());
// Auto upgrade / downgrade plugins on-load - if we have version
// mismatch. See upgrade routine for more information
if ($this->info['version'] && $this->getVersion() != **$this->info['verion']**)
$this->upgrade();
}
You must use $this->info['version'] instead of $this->info['verion'].
Regards,
Jeff.