Skip to content
Snippets Groups Projects
Commit c9a4a990 authored by jaapjansma's avatar jaapjansma
Browse files
parents 653fd02b 0b0aab86
No related branches found
No related tags found
No related merge requests found
Version 1.4-dev (not yet released)
==================================
Version 1.4
===========
**Requires action-provider version 1.9 or newer!**
......
......@@ -71,7 +71,7 @@ class CRM_FormProcessor_Upgrader extends CRM_FormProcessor_Upgrader_Base {
public static function getUnmetDependencyErrorMessage($unmet) {
switch ($unmet[0]) {
case 'action-provider':
return ts('Form Processor was installed successfully, but you must also install and enable the <a href="%1">action-provider Extension</a> version %2 or newer.', array(1 => 'https://lab.civicrm.org/jaapjansma/action-provider', 2=>$unmet[1]));
return ts('Form Processor was installed successfully, but you must also install and enable the <a href="%1">action-provider Extension</a> version %2 or newer.', array(1 => 'https://lab.civicrm.org/extensions/action-provider', 2=>$unmet[1]));
}
CRM_Core_Error::fatal(ts('Unknown error key: %1', array(1 => $unmet)));
......@@ -92,7 +92,7 @@ class CRM_FormProcessor_Upgrader extends CRM_FormProcessor_Upgrader_Base {
$unmet = array();
foreach($dependencies as $ext) {
if (!self::checkExtensionVersion($ext[0], '1.9')) {
if (!self::checkExtensionVersion($ext[0], $ext[1])) {
array_push($unmet, $ext);
}
}
......
......@@ -16,8 +16,8 @@
<url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url>
<url desc="Action-Provider Extension">https://lab.civicrm.org/extensions/action-provider</url>
</urls>
<releaseDate>2019-07-15</releaseDate>
<version>1.4-dev</version>
<releaseDate>2019-11-26</releaseDate>
<version>1.4</version>
<develStage>stable</develStage>
<compatibility>
<ver>4.7</ver>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment