diff --git a/civicrm.php b/civicrm.php index a36e1c8c8e022349525200dbfcab7c249303636d..b1e09f9eed2f2df9d22fbf1a35db2b7261df4a6c 100644 --- a/civicrm.php +++ b/civicrm.php @@ -2,7 +2,7 @@ /** * Plugin Name: CiviCRM * Description: CiviCRM - Growing and Sustaining Relationships - * Version: 5.49.3 + * Version: 5.49.4 * Requires at least: 4.9 * Requires PHP: 7.2 * Author: CiviCRM LLC @@ -36,7 +36,7 @@ if (!defined('ABSPATH')) { } // Set version here: changing it forces Javascript and CSS to reload. -define('CIVICRM_PLUGIN_VERSION', '5.49.3'); +define('CIVICRM_PLUGIN_VERSION', '5.49.4'); // Store reference to this file. if (!defined('CIVICRM_PLUGIN_FILE')) { diff --git a/civicrm/CRM/Utils/Recent.php b/civicrm/CRM/Utils/Recent.php index a2a22ebb4127b75d3a1185cfa466b962d372439f..04e5801edb75f7a02f084c94ef7ea096a76386ff 100644 --- a/civicrm/CRM/Utils/Recent.php +++ b/civicrm/CRM/Utils/Recent.php @@ -244,7 +244,7 @@ class CRM_Utils_Recent { } elseif ($event->action === 'edit') { if (isset($event->object->is_deleted)) { - \Civi\Api4\RecentItem::update() + \Civi\Api4\RecentItem::update(FALSE) ->addWhere('entity_type', '=', $entityType) ->addWhere('entity_id', '=', $event->id) ->addValue('is_deleted', (bool) $event->object->is_deleted) diff --git a/civicrm/Civi/API/Subscriber/ChainSubscriber.php b/civicrm/Civi/API/Subscriber/ChainSubscriber.php index e76220ca0dc0785a4723b000073865fbb0760e93..dfbfa458e84991c8ab7c7051ae0df2ef17d1edea 100644 --- a/civicrm/Civi/API/Subscriber/ChainSubscriber.php +++ b/civicrm/Civi/API/Subscriber/ChainSubscriber.php @@ -89,8 +89,11 @@ class ChainSubscriber implements EventSubscriberInterface { $oldResult = $result; $result = ['values' => [0 => $oldResult]]; } + + // Scan the params for chain calls. foreach ($params as $field => $newparams) { if ((is_array($newparams) || $newparams === 1) && $field <> 'api.has_parent' && substr($field, 0, 3) == 'api') { + // This param is a chain call, e.g. api.<entity>.<action> // 'api.participant.delete' => 1 is a valid options - handle 1 // instead of an array @@ -105,9 +108,13 @@ class ChainSubscriber implements EventSubscriberInterface { $subAPI = explode($separator, $field); $subaction = empty($subAPI[2]) ? $action : $subAPI[2]; - $subParams = [ + /** @var array of parameters that will be applied to every chained request. */ + $enforcedSubParams = [ 'debug' => $params['debug'] ?? NULL, ]; + /** @var array of parameters that provide defaults to every chained request, but which may be overridden by parameters in the chained request. */ + $defaultSubParams = []; + $subEntity = _civicrm_api_get_entity_name_from_camel($subAPI[1]); // Hard coded list of entitys that have fields starting api_ and shouldn't be automatically @@ -131,8 +138,8 @@ class ChainSubscriber implements EventSubscriberInterface { //from the parent call. in this case 'contact_id' will also be //set to the parent's id if (!($subEntity == 'line_item' && $lowercase_entity == 'contribution' && $action != 'create')) { - $subParams["entity_id"] = $parentAPIValues['id']; - $subParams['entity_table'] = 'civicrm_' . $lowercase_entity; + $defaultSubParams["entity_id"] = $parentAPIValues['id']; + $defaultSubParams['entity_table'] = 'civicrm_' . $lowercase_entity; } $addEntityId = TRUE; @@ -150,38 +157,39 @@ class ChainSubscriber implements EventSubscriberInterface { } } if ($addEntityId) { - $subParams[$lowercase_entity . "_id"] = $parentAPIValues['id']; + $defaultSubParams[$lowercase_entity . "_id"] = $parentAPIValues['id']; } } + // @todo remove strtolower: $subEntity is already lower case if ($entity != 'Contact' && \CRM_Utils_Array::value(strtolower($subEntity . "_id"), $parentAPIValues)) { //e.g. if event_id is in the values returned & subentity is event //then pass in event_id as 'id' don't do this for contact as it //does some weird things like returning primary email & //thus limiting the ability to chain email //TODO - this might need the camel treatment - $subParams['id'] = $parentAPIValues[$subEntity . "_id"]; + $defaultSubParams['id'] = $parentAPIValues[$subEntity . "_id"]; } if (\CRM_Utils_Array::value('entity_table', $result['values'][$idIndex]) == $subEntity) { - $subParams['id'] = $result['values'][$idIndex]['entity_id']; + $defaultSubParams['id'] = $result['values'][$idIndex]['entity_id']; } // if we are dealing with the same entity pass 'id' through // (useful for get + delete for example) if ($lowercase_entity == $subEntity) { - $subParams['id'] = $result['values'][$idIndex]['id']; + $defaultSubParams['id'] = $result['values'][$idIndex]['id']; } - $subParams['version'] = $version; - if (!empty($params['check_permissions'])) { - $subParams['check_permissions'] = $params['check_permissions']; - } - $subParams['sequential'] = 1; - $subParams['api.has_parent'] = 1; + $enforcedSubParams['version'] = $version; + // Copy check_permissions from parent. + $enforcedSubParams['check_permissions'] = $params['check_permissions'] ?? NULL; + $enforcedSubParams['sequential'] = 1; + $enforcedSubParams['api.has_parent'] = 1; + // Inspect $newparams, the passed in params for the chain call. if (array_key_exists(0, $newparams)) { - $genericParams = $subParams; - // it is a numerically indexed array - ie. multiple creates + // It is a numerically indexed array - ie. multiple creates foreach ($newparams as $entityparams) { - $subParams = array_merge($genericParams, $entityparams); + // Defaults, overridden by request params, overridden by enforced params. + $subParams = array_merge($defaultSubParams, $entityparams, $enforcedSubParams); _civicrm_api_replace_variables($subParams, $result['values'][$idIndex], $separator); $result['values'][$idIndex][$field][] = $apiKernel->runSafe($subEntity, $subaction, $subParams); if ($result['is_error'] === 1) { @@ -190,8 +198,8 @@ class ChainSubscriber implements EventSubscriberInterface { } } else { - - $subParams = array_merge($subParams, $newparams); + // Defaults, overridden by request params, overridden by enforced params. + $subParams = array_merge($defaultSubParams, $newparams, $enforcedSubParams); _civicrm_api_replace_variables($subParams, $result['values'][$idIndex], $separator); $result['values'][$idIndex][$field] = $apiKernel->runSafe($subEntity, $subaction, $subParams); if (!empty($result['is_error'])) { diff --git a/civicrm/civicrm-version.php b/civicrm/civicrm-version.php index a8b28966b52c9ed3582f2a090bb116f273c64625..57e3e13e9ccf94ea5e3ee33efac15a656ab9644f 100644 --- a/civicrm/civicrm-version.php +++ b/civicrm/civicrm-version.php @@ -1,7 +1,7 @@ <?php /** @deprecated */ function civicrmVersion( ) { - return array( 'version' => '5.49.3', + return array( 'version' => '5.49.4', 'cms' => 'Wordpress', 'revision' => '' ); } diff --git a/civicrm/ext/afform/admin/info.xml b/civicrm/ext/afform/admin/info.xml index 475c2ed271bb998879ad778b1016732aa20151db..3ad8e4d9041e265166f08abd4985c6f061b22702 100644 --- a/civicrm/ext/afform/admin/info.xml +++ b/civicrm/ext/afform/admin/info.xml @@ -13,7 +13,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-01-09</releaseDate> - <version>5.49.3</version> + <version>5.49.4</version> <develStage>beta</develStage> <compatibility> <ver>5.23</ver> diff --git a/civicrm/ext/afform/core/info.xml b/civicrm/ext/afform/core/info.xml index 442ed77062f21a8be6d0da87f84f3225c2dc1baa..f51907e6689b4e81b47237c71c68c57aa00d2c24 100644 --- a/civicrm/ext/afform/core/info.xml +++ b/civicrm/ext/afform/core/info.xml @@ -13,7 +13,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-01-09</releaseDate> - <version>5.49.3</version> + <version>5.49.4</version> <develStage>beta</develStage> <compatibility> <ver>5.23</ver> diff --git a/civicrm/ext/afform/html/info.xml b/civicrm/ext/afform/html/info.xml index ba677bb78a4a5292b66260e912c43e25e31b79e0..6184ad2fe4563c8aaff30b316f34bbbadc8cf30d 100644 --- a/civicrm/ext/afform/html/info.xml +++ b/civicrm/ext/afform/html/info.xml @@ -13,7 +13,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-01-09</releaseDate> - <version>5.49.3</version> + <version>5.49.4</version> <develStage>alpha</develStage> <compatibility> <ver>5.23</ver> diff --git a/civicrm/ext/afform/mock/info.xml b/civicrm/ext/afform/mock/info.xml index 5f699eb3dca15bc9a6a53e648c41f709c35e7631..24e44887b49acaa28d816841343494fc02865b84 100644 --- a/civicrm/ext/afform/mock/info.xml +++ b/civicrm/ext/afform/mock/info.xml @@ -12,7 +12,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-01-09</releaseDate> - <version>5.49.3</version> + <version>5.49.4</version> <tags> <tag>mgmt:hidden</tag> </tags> diff --git a/civicrm/ext/authx/info.xml b/civicrm/ext/authx/info.xml index 8a96d8808811e311907660b010ecb65d6751cf8b..026712e1d85222bb72a76d1aca087ad7d5ab022c 100644 --- a/civicrm/ext/authx/info.xml +++ b/civicrm/ext/authx/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2021-02-11</releaseDate> - <version>5.49.3</version> + <version>5.49.4</version> <develStage>alpha</develStage> <compatibility> <ver>5.0</ver> diff --git a/civicrm/ext/civicrm_admin_ui/info.xml b/civicrm/ext/civicrm_admin_ui/info.xml index 9c4134adbcf6aec5bcd1a77b16f893e44db6c011..0a24ac50790b29d592e8370bc794f62c0742e39e 100644 --- a/civicrm/ext/civicrm_admin_ui/info.xml +++ b/civicrm/ext/civicrm_admin_ui/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2022-01-02</releaseDate> - <version>5.49.3</version> + <version>5.49.4</version> <develStage>alpha</develStage> <compatibility> <ver>5.47</ver> diff --git a/civicrm/ext/civigrant/info.xml b/civicrm/ext/civigrant/info.xml index c7a267731010f47644188199b0d1b1a4448b4fa9..8befa4634b71cc0bbb96225e34354386947a5e59 100644 --- a/civicrm/ext/civigrant/info.xml +++ b/civicrm/ext/civigrant/info.xml @@ -13,7 +13,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2021-11-11</releaseDate> - <version>5.49.3</version> + <version>5.49.4</version> <develStage>stable</develStage> <compatibility> <ver>5.47</ver> diff --git a/civicrm/ext/ckeditor4/info.xml b/civicrm/ext/ckeditor4/info.xml index 14be11e4d87c19eb88c0004415337e0b2873e964..78919477f24e5f2b02f46dc2c007fea40a303fbf 100644 --- a/civicrm/ext/ckeditor4/info.xml +++ b/civicrm/ext/ckeditor4/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">https://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2021-05-23</releaseDate> - <version>5.49.3</version> + <version>5.49.4</version> <develStage>stable</develStage> <compatibility> <ver>5.39</ver> diff --git a/civicrm/ext/contributioncancelactions/info.xml b/civicrm/ext/contributioncancelactions/info.xml index 9fa9f26d3bb56744497d18143803d77a9e3081cf..6ce07c7a1f7728216474d383ddb0e7a890067709 100644 --- a/civicrm/ext/contributioncancelactions/info.xml +++ b/civicrm/ext/contributioncancelactions/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-10-12</releaseDate> - <version>5.49.3</version> + <version>5.49.4</version> <develStage>stable</develStage> <compatibility> <ver>5.32</ver> diff --git a/civicrm/ext/eventcart/info.xml b/civicrm/ext/eventcart/info.xml index f75ceac363c3e07b9f1075b8c1a477c486f3b06d..7cdf60e073fbe1885b392d8f595c3fe22bce18fb 100644 --- a/civicrm/ext/eventcart/info.xml +++ b/civicrm/ext/eventcart/info.xml @@ -13,7 +13,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-08-03</releaseDate> - <version>5.49.3</version> + <version>5.49.4</version> <tags> <tag>mgmt:hidden</tag> </tags> diff --git a/civicrm/ext/ewaysingle/info.xml b/civicrm/ext/ewaysingle/info.xml index bb896f2ad306735d5648708fe95893be45b2e7fc..66904f32d8d95b2592523bb17ea0c91d4ab8ab20 100644 --- a/civicrm/ext/ewaysingle/info.xml +++ b/civicrm/ext/ewaysingle/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-10-07</releaseDate> - <version>5.49.3</version> + <version>5.49.4</version> <tags> <tag>mgmt:hidden</tag> </tags> diff --git a/civicrm/ext/financialacls/info.xml b/civicrm/ext/financialacls/info.xml index 3e4ad81b5a989a6475e4a92b41f74ff3ade1fa7c..3cacc40a1948358c853bf07cfb1a2003147886e8 100644 --- a/civicrm/ext/financialacls/info.xml +++ b/civicrm/ext/financialacls/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-08-27</releaseDate> - <version>5.49.3</version> + <version>5.49.4</version> <develStage>stable</develStage> <compatibility> <ver>5.30</ver> diff --git a/civicrm/ext/flexmailer/info.xml b/civicrm/ext/flexmailer/info.xml index b6206669964d3c77b7dde436b70bc84410bf93b8..dd0a188df0036ed0593b0ca43a0a100704e32319 100644 --- a/civicrm/ext/flexmailer/info.xml +++ b/civicrm/ext/flexmailer/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-08-05</releaseDate> - <version>5.49.3</version> + <version>5.49.4</version> <develStage>stable</develStage> <comments> FlexMailer is an email delivery engine which replaces the internal guts diff --git a/civicrm/ext/greenwich/info.xml b/civicrm/ext/greenwich/info.xml index eebba6248f9fd94ad5a07afa9d1b3c0aba2a5fdf..ae2a1ba504ba0ad32c505db7a6be6b6de77110c0 100644 --- a/civicrm/ext/greenwich/info.xml +++ b/civicrm/ext/greenwich/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-07-21</releaseDate> - <version>5.49.3</version> + <version>5.49.4</version> <tags> <tag>mgmt:hidden</tag> </tags> diff --git a/civicrm/ext/legacycustomsearches/info.xml b/civicrm/ext/legacycustomsearches/info.xml index 45546f2626f4ad19a60b633b6e4a1b4d6cc77c65..2332bbf483352606e4bb0906b8e12157b6d3cdb2 100644 --- a/civicrm/ext/legacycustomsearches/info.xml +++ b/civicrm/ext/legacycustomsearches/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2021-07-25</releaseDate> - <version>5.49.3</version> + <version>5.49.4</version> <develStage>stable</develStage> <tags> <tag>mgmt:hidden</tag> diff --git a/civicrm/ext/message_admin/info.xml b/civicrm/ext/message_admin/info.xml index 7c7d0da97df6cde06a33165826a07a46396bb2b5..ab232a033874f35d9bb105e8bbb40f32eea58875 100644 --- a/civicrm/ext/message_admin/info.xml +++ b/civicrm/ext/message_admin/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2021-06-12</releaseDate> - <version>5.49.3</version> + <version>5.49.4</version> <tags> <tag>mgmt:hidden</tag> </tags> diff --git a/civicrm/ext/oauth-client/info.xml b/civicrm/ext/oauth-client/info.xml index 5cbde9d5ea816444f0ff09526408ef1d56ebe34a..0af2d90758dbb16b38373399a73310c688a532c7 100644 --- a/civicrm/ext/oauth-client/info.xml +++ b/civicrm/ext/oauth-client/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-10-23</releaseDate> - <version>5.49.3</version> + <version>5.49.4</version> <develStage>stable</develStage> <compatibility> <ver>5.38</ver> diff --git a/civicrm/ext/payflowpro/info.xml b/civicrm/ext/payflowpro/info.xml index 2b151bb68a179f635fce83950f73f75ff6607003..9e8e753020852804b8c35cdd31040457a2431eaf 100644 --- a/civicrm/ext/payflowpro/info.xml +++ b/civicrm/ext/payflowpro/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2021-04-13</releaseDate> - <version>5.49.3</version> + <version>5.49.4</version> <develStage>stable</develStage> <compatibility> <ver>5.0</ver> diff --git a/civicrm/ext/recaptcha/info.xml b/civicrm/ext/recaptcha/info.xml index 51dd940bf70adb8f8a7a3a27880959c44ba0e6ef..6e36ad1615b5b0706d62fb53b89f4863d0af6bc8 100644 --- a/civicrm/ext/recaptcha/info.xml +++ b/civicrm/ext/recaptcha/info.xml @@ -13,7 +13,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2021-04-03</releaseDate> - <version>5.49.3</version> + <version>5.49.4</version> <tags> <tag>mgmt:hidden</tag> </tags> diff --git a/civicrm/ext/search_kit/info.xml b/civicrm/ext/search_kit/info.xml index 09b8f1c113637eec80a007a23facbbcc96350c70..1cfe31cbbcdd36e1bc5a790aae110b3129f3bd6c 100644 --- a/civicrm/ext/search_kit/info.xml +++ b/civicrm/ext/search_kit/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2021-01-06</releaseDate> - <version>5.49.3</version> + <version>5.49.4</version> <develStage>stable</develStage> <compatibility> <ver>5.38</ver> diff --git a/civicrm/ext/sequentialcreditnotes/info.xml b/civicrm/ext/sequentialcreditnotes/info.xml index 9e74a32c5e8aacc772612d12d927faffcdba4f4f..05d944d20ac8fcbeca4ee1064ff5df38766f9a2a 100644 --- a/civicrm/ext/sequentialcreditnotes/info.xml +++ b/civicrm/ext/sequentialcreditnotes/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2020-01-28</releaseDate> - <version>5.49.3</version> + <version>5.49.4</version> <tags> <tag>mgmt:hidden</tag> </tags> diff --git a/civicrm/release-notes.md b/civicrm/release-notes.md index 5f78da7fcfe21401a388028d29084cf38c7d9c96..60db337bb835ceb42f2c908a7b32142646daef40 100644 --- a/civicrm/release-notes.md +++ b/civicrm/release-notes.md @@ -15,6 +15,16 @@ Other resources for identifying changes are: * https://github.com/civicrm/civicrm-joomla * https://github.com/civicrm/civicrm-wordpress +## CiviCRM 5.49.4 + +Released June 1, 2022 + +- **[Synopsis](release-notes/5.49.4.md#synopsis)** +- **[Security advisories](release-notes/5.49.4.md#security)** +- **[Bugs resolved](release-notes/5.49.4.md#bugs)** +- **[Credits](release-notes/5.49.4.md#credits)** +- **[Feedback](release-notes/5.49.4.md#feedback)** + ## CiviCRM 5.49.3 Released May 25, 2022 diff --git a/civicrm/release-notes/5.49.4.md b/civicrm/release-notes/5.49.4.md new file mode 100644 index 0000000000000000000000000000000000000000..9be24e4b4845e5373cd9d0276a5b703b13bec6dc --- /dev/null +++ b/civicrm/release-notes/5.49.4.md @@ -0,0 +1,43 @@ +# CiviCRM 5.49.4 + +Released June 1, 2022 + +- **[Synopsis](#synopsis)** +- **[Bugs resolved](#bugs)** +- **[Credits](#credits)** +- **[Feedback](#feedback)** + +## <a name="synopsis"></a>Synopsis + +| *Does this version...?* | | +| --------------------------------------------------------------- | -------- | +| Change the database schema? | no | +| Alter the API? | no | +| Require attention to configuration options? | no | +| Fix problems installing or upgrading to a previous version? | no | +| Introduce features? | no | +| **Fix bugs?** | **yes** | + +## <a name="security"></a>Security advisories + +- **[CIVI-SA-2022-07](https://civicrm.org/advisory/civi-sa-2022-07-apiv3-access-bypass)**: APIv3 Access Bypass + +## <a name="bugs"></a>Bugs resolved + +* **_Recent Items_: Fix "Authorization failed" error on checksum requests ([#23607](https://github.com/civicrm/civicrm-core/pull/23607))** + + This issue causes a fatal error on some configurations (such as public-facing `webform`s that rely on checksums), + even if the screen does not display "Recent Items". + +## <a name="credits"></a>Credits + +This release was developed by the following authors and reviewers: + +Wikimedia Foundation - Eileen McNaughton; MJW Consulting - Matthew Wire; JMA Consulting - +Seamus Lee; CiviCRM - Tim Otten, Coleman Watts; Artful Robot - Rich Lott + +## <a name="feedback"></a>Feedback + +These release notes are edited by Tim Otten and Andie Hunt. If you'd like to +provide feedback on them, please login to https://chat.civicrm.org/civicrm and +contact `@agh1`. diff --git a/civicrm/sql/civicrm_data.mysql b/civicrm/sql/civicrm_data.mysql index 679946f6691725575086e5aaf1f4d5ee2d98d62f..97ad641cb450ee2fdf993141de5bb53e26d65f90 100644 --- a/civicrm/sql/civicrm_data.mysql +++ b/civicrm/sql/civicrm_data.mysql @@ -23787,4 +23787,4 @@ INSERT INTO `civicrm_report_instance` ( `domain_id`, `title`, `report_id`, `description`, `permission`, `form_values`) VALUES ( @domainID, 'Survey Details', 'survey/detail', 'Detailed report for canvassing, phone-banking, walk lists or other surveys.', 'access CiviReport', 'a:39:{s:6:"fields";a:2:{s:9:"sort_name";s:1:"1";s:6:"result";s:1:"1";}s:22:"assignee_contact_id_op";s:2:"eq";s:25:"assignee_contact_id_value";s:0:"";s:12:"sort_name_op";s:3:"has";s:15:"sort_name_value";s:0:"";s:17:"street_number_min";s:0:"";s:17:"street_number_max";s:0:"";s:16:"street_number_op";s:3:"lte";s:19:"street_number_value";s:0:"";s:14:"street_name_op";s:3:"has";s:17:"street_name_value";s:0:"";s:15:"postal_code_min";s:0:"";s:15:"postal_code_max";s:0:"";s:14:"postal_code_op";s:3:"lte";s:17:"postal_code_value";s:0:"";s:7:"city_op";s:3:"has";s:10:"city_value";s:0:"";s:20:"state_province_id_op";s:2:"in";s:23:"state_province_id_value";a:0:{}s:13:"country_id_op";s:2:"in";s:16:"country_id_value";a:0:{}s:12:"survey_id_op";s:2:"in";s:15:"survey_id_value";a:0:{}s:12:"status_id_op";s:2:"eq";s:15:"status_id_value";s:1:"1";s:11:"custom_1_op";s:2:"in";s:14:"custom_1_value";a:0:{}s:11:"custom_2_op";s:2:"in";s:14:"custom_2_value";a:0:{}s:17:"custom_3_relative";s:1:"0";s:13:"custom_3_from";s:0:"";s:11:"custom_3_to";s:0:"";s:11:"description";s:75:"Detailed report for canvassing, phone-banking, walk lists or other surveys.";s:13:"email_subject";s:0:"";s:8:"email_to";s:0:"";s:8:"email_cc";s:0:"";s:10:"permission";s:17:"access CiviReport";s:6:"groups";s:0:"";s:9:"domain_id";i:1;}'); -UPDATE civicrm_domain SET version = '5.49.3'; +UPDATE civicrm_domain SET version = '5.49.4'; diff --git a/civicrm/sql/civicrm_generated.mysql b/civicrm/sql/civicrm_generated.mysql index 071bf64f4dc12b5f142c87ff448ad9a02edcaa04..ec48e0aa6e19bc21845696ea7ebb3e930c64ab56 100644 --- a/civicrm/sql/civicrm_generated.mysql +++ b/civicrm/sql/civicrm_generated.mysql @@ -2933,7 +2933,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_domain` WRITE; /*!40000 ALTER TABLE `civicrm_domain` DISABLE KEYS */; INSERT INTO `civicrm_domain` (`id`, `name`, `description`, `version`, `contact_id`, `locales`, `locale_custom_strings`) VALUES - (1,'Default Domain Name',NULL,'5.49.3',1,NULL,'a:1:{s:5:\"en_US\";a:0:{}}'); + (1,'Default Domain Name',NULL,'5.49.4',1,NULL,'a:1:{s:5:\"en_US\";a:0:{}}'); /*!40000 ALTER TABLE `civicrm_domain` ENABLE KEYS */; UNLOCK TABLES; diff --git a/civicrm/vendor/autoload.php b/civicrm/vendor/autoload.php index e294f69a45c9e16bb2e211dda7864df04dd1ced5..79c89b45392a3b6c8fda18978749c431a4ed98c2 100644 --- a/civicrm/vendor/autoload.php +++ b/civicrm/vendor/autoload.php @@ -4,4 +4,4 @@ require_once __DIR__ . '/composer/autoload_real.php'; -return ComposerAutoloaderInit3f573d51b149865ef06c242906550fc1::getLoader(); +return ComposerAutoloaderInit0b7d21bead845f78d61233f501552e74::getLoader(); diff --git a/civicrm/vendor/composer/autoload_real.php b/civicrm/vendor/composer/autoload_real.php index 90e2a97b69c291a8b808683c94a679e3496482df..1a2086a7d676699964e8b37fae9ecb747b208a74 100644 --- a/civicrm/vendor/composer/autoload_real.php +++ b/civicrm/vendor/composer/autoload_real.php @@ -2,7 +2,7 @@ // autoload_real.php @generated by Composer -class ComposerAutoloaderInit3f573d51b149865ef06c242906550fc1 +class ComposerAutoloaderInit0b7d21bead845f78d61233f501552e74 { private static $loader; @@ -19,9 +19,9 @@ class ComposerAutoloaderInit3f573d51b149865ef06c242906550fc1 return self::$loader; } - spl_autoload_register(array('ComposerAutoloaderInit3f573d51b149865ef06c242906550fc1', 'loadClassLoader'), true, true); + spl_autoload_register(array('ComposerAutoloaderInit0b7d21bead845f78d61233f501552e74', 'loadClassLoader'), true, true); self::$loader = $loader = new \Composer\Autoload\ClassLoader(); - spl_autoload_unregister(array('ComposerAutoloaderInit3f573d51b149865ef06c242906550fc1', 'loadClassLoader')); + spl_autoload_unregister(array('ComposerAutoloaderInit0b7d21bead845f78d61233f501552e74', 'loadClassLoader')); $includePaths = require __DIR__ . '/include_paths.php'; $includePaths[] = get_include_path(); @@ -31,7 +31,7 @@ class ComposerAutoloaderInit3f573d51b149865ef06c242906550fc1 if ($useStaticLoader) { require_once __DIR__ . '/autoload_static.php'; - call_user_func(\Composer\Autoload\ComposerStaticInit3f573d51b149865ef06c242906550fc1::getInitializer($loader)); + call_user_func(\Composer\Autoload\ComposerStaticInit0b7d21bead845f78d61233f501552e74::getInitializer($loader)); } else { $map = require __DIR__ . '/autoload_namespaces.php'; foreach ($map as $namespace => $path) { @@ -52,19 +52,19 @@ class ComposerAutoloaderInit3f573d51b149865ef06c242906550fc1 $loader->register(true); if ($useStaticLoader) { - $includeFiles = Composer\Autoload\ComposerStaticInit3f573d51b149865ef06c242906550fc1::$files; + $includeFiles = Composer\Autoload\ComposerStaticInit0b7d21bead845f78d61233f501552e74::$files; } else { $includeFiles = require __DIR__ . '/autoload_files.php'; } foreach ($includeFiles as $fileIdentifier => $file) { - composerRequire3f573d51b149865ef06c242906550fc1($fileIdentifier, $file); + composerRequire0b7d21bead845f78d61233f501552e74($fileIdentifier, $file); } return $loader; } } -function composerRequire3f573d51b149865ef06c242906550fc1($fileIdentifier, $file) +function composerRequire0b7d21bead845f78d61233f501552e74($fileIdentifier, $file) { if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { require $file; diff --git a/civicrm/vendor/composer/autoload_static.php b/civicrm/vendor/composer/autoload_static.php index bc83545a63786ff776b5c7faa1e28c88903b56d7..5d07a6384e80235a1d87f6df43112bec62be90b7 100644 --- a/civicrm/vendor/composer/autoload_static.php +++ b/civicrm/vendor/composer/autoload_static.php @@ -4,7 +4,7 @@ namespace Composer\Autoload; -class ComposerStaticInit3f573d51b149865ef06c242906550fc1 +class ComposerStaticInit0b7d21bead845f78d61233f501552e74 { public static $files = array ( '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php', @@ -684,11 +684,11 @@ class ComposerStaticInit3f573d51b149865ef06c242906550fc1 public static function getInitializer(ClassLoader $loader) { return \Closure::bind(function () use ($loader) { - $loader->prefixLengthsPsr4 = ComposerStaticInit3f573d51b149865ef06c242906550fc1::$prefixLengthsPsr4; - $loader->prefixDirsPsr4 = ComposerStaticInit3f573d51b149865ef06c242906550fc1::$prefixDirsPsr4; - $loader->prefixesPsr0 = ComposerStaticInit3f573d51b149865ef06c242906550fc1::$prefixesPsr0; - $loader->fallbackDirsPsr0 = ComposerStaticInit3f573d51b149865ef06c242906550fc1::$fallbackDirsPsr0; - $loader->classMap = ComposerStaticInit3f573d51b149865ef06c242906550fc1::$classMap; + $loader->prefixLengthsPsr4 = ComposerStaticInit0b7d21bead845f78d61233f501552e74::$prefixLengthsPsr4; + $loader->prefixDirsPsr4 = ComposerStaticInit0b7d21bead845f78d61233f501552e74::$prefixDirsPsr4; + $loader->prefixesPsr0 = ComposerStaticInit0b7d21bead845f78d61233f501552e74::$prefixesPsr0; + $loader->fallbackDirsPsr0 = ComposerStaticInit0b7d21bead845f78d61233f501552e74::$fallbackDirsPsr0; + $loader->classMap = ComposerStaticInit0b7d21bead845f78d61233f501552e74::$classMap; }, null, ClassLoader::class); } diff --git a/civicrm/xml/version.xml b/civicrm/xml/version.xml index c5fd6551d91cb6b65acf393ea8d74adb2b727f12..71a6a2c50fc9eae35dd7f6cf759aa5831b67bcb6 100644 --- a/civicrm/xml/version.xml +++ b/civicrm/xml/version.xml @@ -1,4 +1,4 @@ <?xml version="1.0" encoding="iso-8859-1" ?> <version> - <version_no>5.49.3</version_no> + <version_no>5.49.4</version_no> </version>