diff --git a/civicrm.php b/civicrm.php index fdffa195841b70a032afd8573bb930ffb4ddd7de..5fb4930076779ebf98f7d337882b00edf33cb616 100644 --- a/civicrm.php +++ b/civicrm.php @@ -2,7 +2,7 @@ /** * Plugin Name: CiviCRM * Description: CiviCRM - Growing and Sustaining Relationships - * Version: 5.45.2 + * Version: 5.45.3 * Requires at least: 4.9 * Requires PHP: 7.2 * Author: CiviCRM LLC @@ -54,7 +54,7 @@ if (!defined('ABSPATH')) { } // Set version here: when it changes, will force Javascript & CSS to reload. -define('CIVICRM_PLUGIN_VERSION', '5.45.2'); +define('CIVICRM_PLUGIN_VERSION', '5.45.3'); // Store reference to this file. if (!defined('CIVICRM_PLUGIN_FILE')) { diff --git a/civicrm/CRM/Core/BAO/Managed.php b/civicrm/CRM/Core/BAO/Managed.php index ae64d877bbfa39f3d46ce19b6f344482505c5eee..cac29aa1866645266c3b543da29d36887f26e033 100644 --- a/civicrm/CRM/Core/BAO/Managed.php +++ b/civicrm/CRM/Core/BAO/Managed.php @@ -34,6 +34,10 @@ class CRM_Core_BAO_Managed extends CRM_Core_DAO_Managed implements Civi\Test\Hoo } // When an entity is updated, update the timestamp in corresponding Managed record elseif ($event->action === 'edit' && $event->id && self::isApi4ManagedType($event->entity)) { + if (!array_key_exists('entity_modified_date', self::getSupportedFields())) { + // During upgrades this column may not exist yet + return; + } CRM_Core_DAO::executeQuery('UPDATE civicrm_managed SET entity_modified_date = CURRENT_TIMESTAMP WHERE entity_type = %1 AND entity_id = %2', [ 1 => [$event->entity, 'String'], 2 => [$event->id, 'Integer'], diff --git a/civicrm/CRM/Export/BAO/ExportProcessor.php b/civicrm/CRM/Export/BAO/ExportProcessor.php index 4e85f9758c6aba9f0b2d59fe4b31e69dc75ce56b..18a5663ff8d6180c75840ad2a1dcb7b22a1d20b7 100644 --- a/civicrm/CRM/Export/BAO/ExportProcessor.php +++ b/civicrm/CRM/Export/BAO/ExportProcessor.php @@ -1464,6 +1464,16 @@ class CRM_Export_BAO_ExportProcessor { case CRM_Utils_Type::T_STRING: if (isset($fieldSpec['maxlength'])) { + // A localized string for the preferred_mail_format does not fit + // into the varchar(8) field. + // @see https://lab.civicrm.org/dev/core/-/issues/2645 + switch ($fieldName) { + case 'preferred_mail_format': + return "`$fieldName` text(16)"; + + default: + return "`$fieldName` varchar({$fieldSpec['maxlength']})"; + } } $dataType = $fieldSpec['data_type'] ?? ''; // set the sql columns for custom data diff --git a/civicrm/civicrm-version.php b/civicrm/civicrm-version.php index b0db8a0818f7416a3c9cdefa465e1d4a8d6df04e..57caddf8fda9d218ae9ab589bcbdfe508aa46fb2 100644 --- a/civicrm/civicrm-version.php +++ b/civicrm/civicrm-version.php @@ -1,7 +1,7 @@ <?php /** @deprecated */ function civicrmVersion( ) { - return array( 'version' => '5.45.2', + return array( 'version' => '5.45.3', 'cms' => 'Wordpress', 'revision' => '' ); } diff --git a/civicrm/ext/afform/admin/info.xml b/civicrm/ext/afform/admin/info.xml index 86922d6c1469b42727e21a80ceb87ba2a303c155..43d7c88ad6101579bea08bda69b155307b8fc3ea 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.45.2</version> + <version>5.45.3</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 5bf7aa5fdfb9a90197b91334bfcbd3917e73a81e..da9e10213631426a74078b2742139fa36b94f9a9 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.45.2</version> + <version>5.45.3</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 59c1ba8f27ae99573a427a24b011a03c4fdb2097..fcd112b61f1a05c4beb6a00dfc364b3cc7f4f0cb 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.45.2</version> + <version>5.45.3</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 1230e4e384fe34cf7ffcbc151c19a0bc9ab9eec7..c0b7296ba8e272c4f21116009118c4e436a92ba0 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.45.2</version> + <version>5.45.3</version> <tags> <tag>mgmt:hidden</tag> </tags> diff --git a/civicrm/ext/authx/info.xml b/civicrm/ext/authx/info.xml index 0cc74bf8ed9b1ff32b62585809fb0a16c93cedb5..3b63de7ffa0cab09b4f88a4ef49d74445687b3f8 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.45.2</version> + <version>5.45.3</version> <develStage>alpha</develStage> <compatibility> <ver>5.0</ver> diff --git a/civicrm/ext/ckeditor4/info.xml b/civicrm/ext/ckeditor4/info.xml index 5178f6d2d77cef67fc95cf79d86a043609d27158..c683fa792185f69180cc9db3d7bed2c2edba8a75 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.45.2</version> + <version>5.45.3</version> <develStage>stable</develStage> <compatibility> <ver>5.39</ver> diff --git a/civicrm/ext/contributioncancelactions/info.xml b/civicrm/ext/contributioncancelactions/info.xml index 28028b162d0ad3d13dad4f53f5d2cc6544b269dd..cb18fdbb86b48ca05bdb2c94049fd7c7a4d4183a 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.45.2</version> + <version>5.45.3</version> <develStage>stable</develStage> <compatibility> <ver>5.32</ver> diff --git a/civicrm/ext/eventcart/info.xml b/civicrm/ext/eventcart/info.xml index ae6decdcf335e210b9f70d46265578a650c7b72a..a66183c0c8faf26f861b9a9b278e63e14e61f0d4 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.45.2</version> + <version>5.45.3</version> <tags> <tag>mgmt:hidden</tag> </tags> diff --git a/civicrm/ext/ewaysingle/info.xml b/civicrm/ext/ewaysingle/info.xml index b160fa7f6fe1ec2cae5a0db12a59f3228df3af3b..86c7c790f8a48ab7aba67aac37a93008f353310a 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.45.2</version> + <version>5.45.3</version> <tags> <tag>mgmt:hidden</tag> </tags> diff --git a/civicrm/ext/financialacls/info.xml b/civicrm/ext/financialacls/info.xml index fb4dbae9978c05f8fcc9b5f1c1842413c7966fda..01289f74525f68a66601b0729c175301876cfcc5 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.45.2</version> + <version>5.45.3</version> <develStage>stable</develStage> <compatibility> <ver>5.30</ver> diff --git a/civicrm/ext/flexmailer/info.xml b/civicrm/ext/flexmailer/info.xml index 6561a29e9010600ec58cd560029a74e6310a3db5..9f35d4bdde1f7d6e094313d763f74063e30c676f 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.45.2</version> + <version>5.45.3</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 50c58b5f5a890c501c635d70ada0f016d774ae26..58a2099d961db7882b417f85855d0dda94432ba1 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.45.2</version> + <version>5.45.3</version> <tags> <tag>mgmt:hidden</tag> </tags> diff --git a/civicrm/ext/legacycustomsearches/info.xml b/civicrm/ext/legacycustomsearches/info.xml index 8a62df2de8d7e2082c257f894a57aba9fe62aead..eda547ea5fa9fdaa622881d9d2af34a5621666f8 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.45.2</version> + <version>5.45.3</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 f1399d5dc5283029353f90414f08416069fc7a91..3bbfb115a6adb8ea0d93e619467929155bd0c68b 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.45.2</version> + <version>5.45.3</version> <tags> <tag>mgmt:hidden</tag> </tags> diff --git a/civicrm/ext/oauth-client/info.xml b/civicrm/ext/oauth-client/info.xml index 98fb9d2db95bea37cc83190704b299fc10dd7156..aac474921f71243b3d19912791d8d735e6fbe1d4 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.45.2</version> + <version>5.45.3</version> <develStage>stable</develStage> <compatibility> <ver>5.38</ver> diff --git a/civicrm/ext/payflowpro/info.xml b/civicrm/ext/payflowpro/info.xml index a00589329be340129c5ef232716a9ca5ca143481..dea55ad690a91a34295f670a59975987306b8b87 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.45.2</version> + <version>5.45.3</version> <develStage>stable</develStage> <compatibility> <ver>5.0</ver> diff --git a/civicrm/ext/recaptcha/info.xml b/civicrm/ext/recaptcha/info.xml index fdc8525e89e3ca040de168444c24f91ea0ce4ced..3a3d6f82a079e90cc73da733a7b29b911e91a046 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.45.2</version> + <version>5.45.3</version> <tags> <tag>mgmt:hidden</tag> </tags> diff --git a/civicrm/ext/search_kit/info.xml b/civicrm/ext/search_kit/info.xml index 6e1bc152870de10edf5ff6e69c22b0488555f837..e51776cc31f9784ecfe058665f4340cf9c36b5dd 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.45.2</version> + <version>5.45.3</version> <develStage>beta</develStage> <compatibility> <ver>5.38</ver> diff --git a/civicrm/ext/sequentialcreditnotes/info.xml b/civicrm/ext/sequentialcreditnotes/info.xml index 284ef0a9fc0b7fd02a59fa16ba4985d519e6b790..3c811bdc97888d6c830f53eb653071b2e443e696 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.45.2</version> + <version>5.45.3</version> <tags> <tag>mgmt:hidden</tag> </tags> diff --git a/civicrm/release-notes.md b/civicrm/release-notes.md index 94a1bdf4f620fdbaa324e89d7a6d739763db2d71..bbd982dfce81bf63db59dae4cb871cf2043ae7b6 100644 --- a/civicrm/release-notes.md +++ b/civicrm/release-notes.md @@ -15,6 +15,15 @@ Other resources for identifying changes are: * https://github.com/civicrm/civicrm-joomla * https://github.com/civicrm/civicrm-wordpress +## CiviCRM 5.45.3 + +Released February 3, 2022 + +- **[Synopsis](release-notes/5.45.3.md#synopsis)** +- **[Bugs resolved](release-notes/5.45.3.md#bugs)** +- **[Credits](release-notes/5.45.3.md#credits)** +- **[Feedback](release-notes/5.45.3.md#feedback)** + ## CiviCRM 5.45.2 Released January 28, 2022 diff --git a/civicrm/release-notes/5.45.3.md b/civicrm/release-notes/5.45.3.md new file mode 100644 index 0000000000000000000000000000000000000000..ec85bdf80607eb4fabbb17b19b3abb65fa615c0e --- /dev/null +++ b/civicrm/release-notes/5.45.3.md @@ -0,0 +1,39 @@ +# CiviCRM 5.45.3 + +Released February 3, 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?** | **yes** | +| Introduce features? | no | +| Fix bugs? | no | + +## <a name=bugs></a>Bugs resolved + +* **_Managed Entities_: Fix crash during upgrade ([dev/core#3045](https://lab.civicrm.org/dev/core/-/issues/3045): [#22642](https://github.com/civicrm/civicrm-core/pull/22642))** + + The configurations affected by this issue could not be positively identified. However, affected users reported that the patch fixed the issue. + +## <a name=credits></a>Credits + +This release was developed by the following authors and reviewers: + +CiviCoop - Jaap Jansma; CiviCRM - Coleman Watts, Tim Otten; JMA Consulting - Seamus Lee; +Third Sector Design - William Mortada, Kurund Jalmi; Wikimedia Foundation - Eileen +McNaughton + +## <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 7202aa946fb4b5857308921fe7dfe4ecb87c1245..39d8058f09480fb12631d9afaf971e5c7edd5cce 100644 --- a/civicrm/sql/civicrm_data.mysql +++ b/civicrm/sql/civicrm_data.mysql @@ -23853,4 +23853,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.45.2'; +UPDATE civicrm_domain SET version = '5.45.3'; diff --git a/civicrm/sql/civicrm_generated.mysql b/civicrm/sql/civicrm_generated.mysql index c53c701c8fc7e7ce0bdf2376f75a12a781f16ada..461aad51c1f9cd04389718294dfad12525198fe1 100644 --- a/civicrm/sql/civicrm_generated.mysql +++ b/civicrm/sql/civicrm_generated.mysql @@ -2896,7 +2896,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.45.2',1,NULL,'a:1:{s:5:\"en_US\";a:0:{}}'); + (1,'Default Domain Name',NULL,'5.45.3',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 6dff542c7736ee0301738d8372a490399c320a51..719d21b10d7056c2f7a17cca9130461c62a3f83c 100644 --- a/civicrm/vendor/autoload.php +++ b/civicrm/vendor/autoload.php @@ -4,4 +4,4 @@ require_once __DIR__ . '/composer/autoload_real.php'; -return ComposerAutoloaderInit2849ed2655cdf02df20e11e4e9c5abb7::getLoader(); +return ComposerAutoloaderInite564088416febabc4bbcae3d0299db8b::getLoader(); diff --git a/civicrm/vendor/composer/autoload_real.php b/civicrm/vendor/composer/autoload_real.php index 6d216b67c5fa7b23b3eef69f24a39f7bd209a7f6..00c5f90235efba5464e92343ab3e3959eed4b393 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 ComposerAutoloaderInit2849ed2655cdf02df20e11e4e9c5abb7 +class ComposerAutoloaderInite564088416febabc4bbcae3d0299db8b { private static $loader; @@ -19,9 +19,9 @@ class ComposerAutoloaderInit2849ed2655cdf02df20e11e4e9c5abb7 return self::$loader; } - spl_autoload_register(array('ComposerAutoloaderInit2849ed2655cdf02df20e11e4e9c5abb7', 'loadClassLoader'), true, true); + spl_autoload_register(array('ComposerAutoloaderInite564088416febabc4bbcae3d0299db8b', 'loadClassLoader'), true, true); self::$loader = $loader = new \Composer\Autoload\ClassLoader(); - spl_autoload_unregister(array('ComposerAutoloaderInit2849ed2655cdf02df20e11e4e9c5abb7', 'loadClassLoader')); + spl_autoload_unregister(array('ComposerAutoloaderInite564088416febabc4bbcae3d0299db8b', 'loadClassLoader')); $includePaths = require __DIR__ . '/include_paths.php'; $includePaths[] = get_include_path(); @@ -31,7 +31,7 @@ class ComposerAutoloaderInit2849ed2655cdf02df20e11e4e9c5abb7 if ($useStaticLoader) { require_once __DIR__ . '/autoload_static.php'; - call_user_func(\Composer\Autoload\ComposerStaticInit2849ed2655cdf02df20e11e4e9c5abb7::getInitializer($loader)); + call_user_func(\Composer\Autoload\ComposerStaticInite564088416febabc4bbcae3d0299db8b::getInitializer($loader)); } else { $map = require __DIR__ . '/autoload_namespaces.php'; foreach ($map as $namespace => $path) { @@ -52,19 +52,19 @@ class ComposerAutoloaderInit2849ed2655cdf02df20e11e4e9c5abb7 $loader->register(true); if ($useStaticLoader) { - $includeFiles = Composer\Autoload\ComposerStaticInit2849ed2655cdf02df20e11e4e9c5abb7::$files; + $includeFiles = Composer\Autoload\ComposerStaticInite564088416febabc4bbcae3d0299db8b::$files; } else { $includeFiles = require __DIR__ . '/autoload_files.php'; } foreach ($includeFiles as $fileIdentifier => $file) { - composerRequire2849ed2655cdf02df20e11e4e9c5abb7($fileIdentifier, $file); + composerRequiree564088416febabc4bbcae3d0299db8b($fileIdentifier, $file); } return $loader; } } -function composerRequire2849ed2655cdf02df20e11e4e9c5abb7($fileIdentifier, $file) +function composerRequiree564088416febabc4bbcae3d0299db8b($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 0ddaea5e58355cbbebd285e5bbcd99fd4e6aa72e..f948119d7b41050856b4f6d24d5e13f4d1f563ea 100644 --- a/civicrm/vendor/composer/autoload_static.php +++ b/civicrm/vendor/composer/autoload_static.php @@ -4,7 +4,7 @@ namespace Composer\Autoload; -class ComposerStaticInit2849ed2655cdf02df20e11e4e9c5abb7 +class ComposerStaticInite564088416febabc4bbcae3d0299db8b { public static $files = array ( '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php', @@ -672,11 +672,11 @@ class ComposerStaticInit2849ed2655cdf02df20e11e4e9c5abb7 public static function getInitializer(ClassLoader $loader) { return \Closure::bind(function () use ($loader) { - $loader->prefixLengthsPsr4 = ComposerStaticInit2849ed2655cdf02df20e11e4e9c5abb7::$prefixLengthsPsr4; - $loader->prefixDirsPsr4 = ComposerStaticInit2849ed2655cdf02df20e11e4e9c5abb7::$prefixDirsPsr4; - $loader->prefixesPsr0 = ComposerStaticInit2849ed2655cdf02df20e11e4e9c5abb7::$prefixesPsr0; - $loader->fallbackDirsPsr0 = ComposerStaticInit2849ed2655cdf02df20e11e4e9c5abb7::$fallbackDirsPsr0; - $loader->classMap = ComposerStaticInit2849ed2655cdf02df20e11e4e9c5abb7::$classMap; + $loader->prefixLengthsPsr4 = ComposerStaticInite564088416febabc4bbcae3d0299db8b::$prefixLengthsPsr4; + $loader->prefixDirsPsr4 = ComposerStaticInite564088416febabc4bbcae3d0299db8b::$prefixDirsPsr4; + $loader->prefixesPsr0 = ComposerStaticInite564088416febabc4bbcae3d0299db8b::$prefixesPsr0; + $loader->fallbackDirsPsr0 = ComposerStaticInite564088416febabc4bbcae3d0299db8b::$fallbackDirsPsr0; + $loader->classMap = ComposerStaticInite564088416febabc4bbcae3d0299db8b::$classMap; }, null, ClassLoader::class); } diff --git a/civicrm/xml/version.xml b/civicrm/xml/version.xml index f54b00575987516dea481942e3cd4a6e21ada976..8b423185605791c9c4677e1879fbcf9b67a43457 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.45.2</version_no> + <version_no>5.45.3</version_no> </version>