Merged in luisfernandosl/processmaker/BUG-378 (pull request #834)

BUG 378 "Upgrading plugins error. The version..." SOLVED
This commit is contained in:
Julio Cesar Laura Avendaño
2014-09-29 15:08:42 -04:00

View File

@@ -166,17 +166,17 @@ class AddonsManager extends BaseAddonsManager
return (null); return (null);
} }
/////// $oPluginRegistry = &PMPluginRegistry::getSingleton();
$details = $oPluginRegistry->getPluginDetails($this->getAddonName() . ".php");
$v = (!($details == null))? $details->iVersion : null;
if ($v != "") {
return ($v);
}
if (file_exists(PATH_PLUGINS . $this->getAddonName() . PATH_SEP . "VERSION")) { if (file_exists(PATH_PLUGINS . $this->getAddonName() . PATH_SEP . "VERSION")) {
return (trim(file_get_contents(PATH_PLUGINS . $this->getAddonName() . PATH_SEP . "VERSION"))); return (trim(file_get_contents(PATH_PLUGINS . $this->getAddonName() . PATH_SEP . "VERSION")));
} }
///////
$oPluginRegistry = &PMPluginRegistry::getSingleton();
$details = $oPluginRegistry->getPluginDetails($this->getAddonName() . ".php");
$v = (!($details == null))? $details->iVersion : null;
return ($v);
} else { } else {
if ($this->getAddonType() == "core") { if ($this->getAddonType() == "core") {
throw new Exception("Addon type \"" . $this->getAddonType() . "\" unsupported"); throw new Exception("Addon type \"" . $this->getAddonType() . "\" unsupported");