diff --git a/CHANGELOG.md b/CHANGELOG.md index bd5193b524d8f0ac80ab0943ebc523b9f7c7eec6..3130e73ad40da71196fafa7382e4eab1d72f95d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,6 @@ -# Version 1.112 (not yet released) +# Version 1.112 + +* Fixed issue with API permissions. # Version 1.111 diff --git a/dataprocessor.php b/dataprocessor.php index e5b2bfc1b16c7ad1aaab042fb80f40ee2199fc32..a351ec12ccece388e9ad265f5fe1a1844c791291 100644 --- a/dataprocessor.php +++ b/dataprocessor.php @@ -79,7 +79,7 @@ function dataprocessor_civicrm_alterAPIPermissions($entity, $action, &$params, & foreach($config->getParameter('api3_permissions') as $e => $actions) { if (strtolower(($e)) == strtolower($entityCamelCase)) { foreach ($actions as $a => $p) { - if (strtolower($actionCamelCase) == strtolower($a)) { + if (strtolower($actionCamelCase) == strtolower($a) || strtolower($api_action) == strtolower($a)) { $permissions[$entity][$action] = $p; } } diff --git a/info.xml b/info.xml index 8390f5d326ee5f949138a4f362d1c0c1591bb468..34cd616120ffc9287a64477332d0023faa03e097 100644 --- a/info.xml +++ b/info.xml @@ -14,8 +14,8 @@ <url desc="Documentation">https://lab.civicrm.org/extensions/dataprocessor/blob/master/README.md</url> <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> - <releaseDate>2024-08-08</releaseDate> - <version>1.112-dev</version> + <releaseDate>2024-08-13</releaseDate> + <version>1.112</version> <develStage>stable</develStage> <compatibility> <ver>5.37</ver>