diff --git a/civicrm.php b/civicrm.php index cbe71c945707dfc28ab57f991a270b7bc32c7909..5ce81b2fc77f55138665534d26e87e9c06c9f96d 100644 --- a/civicrm.php +++ b/civicrm.php @@ -2,7 +2,7 @@ /** * Plugin Name: CiviCRM * Description: CiviCRM - Growing and Sustaining Relationships - * Version: 5.63.1 + * Version: 5.63.2 * Requires at least: 4.9 * Requires PHP: 7.3 * 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.63.1'); +define('CIVICRM_PLUGIN_VERSION', '5.63.2'); // Store reference to this file. if (!defined('CIVICRM_PLUGIN_FILE')) { diff --git a/civicrm/CRM/Price/BAO/PriceField.php b/civicrm/CRM/Price/BAO/PriceField.php index 511fbb0dcb9cc57f828dd8e9f7891909117cd5a7..06730389c5ee0f56bdb8346cc72101bab8fe0005 100644 --- a/civicrm/CRM/Price/BAO/PriceField.php +++ b/civicrm/CRM/Price/BAO/PriceField.php @@ -445,11 +445,12 @@ class CRM_Price_BAO_PriceField extends CRM_Price_DAO_PriceField { break; case 'Select': - $selectOption = $allowedOptions = []; + $selectOption = $allowedOptions = $priceVal = []; foreach ($customOption as $opt) { $priceOptionText = self::buildPriceOptionText($opt, $field->is_display_amounts, $valueFieldName); $priceOptionText['label'] = strip_tags($priceOptionText['label']); + $priceVal[$opt['id']] = $priceOptionText['priceVal']; if (!in_array($opt['id'], $freezeOptions)) { $allowedOptions[] = $opt['id']; @@ -484,7 +485,7 @@ class CRM_Price_BAO_PriceField extends CRM_Price_DAO_PriceField { $element = &$qf->add('select', $elementName, $label, $selectOption, $useRequired && $field->is_required, [ 'placeholder' => ts('- select %1 -', [1 => $label]), - 'price' => json_encode($priceOptionText['priceVal']), + 'price' => json_encode($priceVal), 'class' => 'crm-select2' . $class, 'data-price-field-values' => json_encode($customOption), ]); diff --git a/civicrm/CRM/Upgrade/Incremental/General.php b/civicrm/CRM/Upgrade/Incremental/General.php index ddb68743841f9b510372bee6df178dc4a33d53d6..38f9cd01e60455c0f73b04b5d70061999a79de5e 100644 --- a/civicrm/CRM/Upgrade/Incremental/General.php +++ b/civicrm/CRM/Upgrade/Incremental/General.php @@ -33,7 +33,7 @@ class CRM_Upgrade_Incremental_General { * * A site running an earlier version will be told to upgrade. */ - const MIN_RECOMMENDED_PHP_VER = '7.3.0'; + const MIN_RECOMMENDED_PHP_VER = '7.4.0'; /** * The minimum PHP version required to install Civi. diff --git a/civicrm/civicrm-version.php b/civicrm/civicrm-version.php index ce24d1ae8359ced69c0204cbbefc9bcf1fb455a5..13b933a41322f214871fd8935b7757d6c4c92f96 100644 --- a/civicrm/civicrm-version.php +++ b/civicrm/civicrm-version.php @@ -1,7 +1,7 @@ <?php /** @deprecated */ function civicrmVersion( ) { - return array( 'version' => '5.63.1', + return array( 'version' => '5.63.2', 'cms' => 'Wordpress', 'revision' => '' ); } diff --git a/civicrm/ext/afform/admin/info.xml b/civicrm/ext/afform/admin/info.xml index ec50f0cfb95534d2540ff2d4a41fa5b3a16859ff..571188e97f794bd9db886db8b28a7e1ba2f449ab 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.63.1</version> + <version>5.63.2</version> <develStage>beta</develStage> <compatibility> <ver>5.63</ver> diff --git a/civicrm/ext/afform/core/info.xml b/civicrm/ext/afform/core/info.xml index 7ff71d56bf8d2e8ae9d87d81dc03c1fca60bc262..5fe92ec4a56e3acc703e4cff6e549edd62755e42 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.63.1</version> + <version>5.63.2</version> <develStage>beta</develStage> <compatibility> <ver>5.63</ver> diff --git a/civicrm/ext/afform/html/info.xml b/civicrm/ext/afform/html/info.xml index c1e613667ffc132ed20436243f4ff07d123447cf..3dd31db5b5ea0a7e1bf2d2f41a7b5030cc05397f 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.63.1</version> + <version>5.63.2</version> <develStage>alpha</develStage> <compatibility> <ver>5.63</ver> diff --git a/civicrm/ext/afform/mock/info.xml b/civicrm/ext/afform/mock/info.xml index 5aff9b7eeb59c3417787dfe90fe437a9bdb36f90..6c71c1516e43e762e5a1fc78ced24339b1094a6f 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.63.1</version> + <version>5.63.2</version> <tags> <tag>mgmt:hidden</tag> </tags> diff --git a/civicrm/ext/authx/info.xml b/civicrm/ext/authx/info.xml index ae1d8c8c2da0648999ac769be7cafdcd46863e15..afc9d7139c96984d376a8076493a20f565e40ff3 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.63.1</version> + <version>5.63.2</version> <develStage>stable</develStage> <compatibility> <ver>5.63</ver> diff --git a/civicrm/ext/civi_campaign/info.xml b/civicrm/ext/civi_campaign/info.xml index bc4f3bbd387ed676af5eb7b94b5162543328de67..b62977c1c7115d3323b898529a247facb787e8f8 100644 --- a/civicrm/ext/civi_campaign/info.xml +++ b/civicrm/ext/civi_campaign/info.xml @@ -13,7 +13,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2023-04-08</releaseDate> - <version>5.63.1</version> + <version>5.63.2</version> <develStage>stable</develStage> <tags> <tag>component</tag> diff --git a/civicrm/ext/civi_case/info.xml b/civicrm/ext/civi_case/info.xml index 946b417bb70d941a8c6668f5e9ac5b73f740d5d8..fe7ce69f42e0eb56f34b4030bd918c71e0a543bd 100644 --- a/civicrm/ext/civi_case/info.xml +++ b/civicrm/ext/civi_case/info.xml @@ -13,7 +13,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2023-04-08</releaseDate> - <version>5.63.1</version> + <version>5.63.2</version> <develStage>stable</develStage> <tags> <tag>component</tag> diff --git a/civicrm/ext/civi_contribute/info.xml b/civicrm/ext/civi_contribute/info.xml index c435ca1e00e4fb1eb729c255a9997bb409fd7798..9315549d5d700473c43ebe8f8d0be9744ca74104 100644 --- a/civicrm/ext/civi_contribute/info.xml +++ b/civicrm/ext/civi_contribute/info.xml @@ -13,7 +13,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2023-04-08</releaseDate> - <version>5.63.1</version> + <version>5.63.2</version> <develStage>stable</develStage> <tags> <tag>component</tag> diff --git a/civicrm/ext/civi_event/info.xml b/civicrm/ext/civi_event/info.xml index 8a02b44f9384fb246e9d2d70c127919cf9c5d18d..a76d8c375ab39d42414782d1948024319e85e6b8 100644 --- a/civicrm/ext/civi_event/info.xml +++ b/civicrm/ext/civi_event/info.xml @@ -13,7 +13,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2023-04-08</releaseDate> - <version>5.63.1</version> + <version>5.63.2</version> <develStage>stable</develStage> <tags> <tag>component</tag> diff --git a/civicrm/ext/civi_mail/info.xml b/civicrm/ext/civi_mail/info.xml index f5e0f2931f2fb7d4c0be8c7154813a7c3a0bee31..1f69a6bbf4e71af4aa0a7a29c12370daa3feb121 100644 --- a/civicrm/ext/civi_mail/info.xml +++ b/civicrm/ext/civi_mail/info.xml @@ -13,7 +13,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2023-04-08</releaseDate> - <version>5.63.1</version> + <version>5.63.2</version> <develStage>stable</develStage> <tags> <tag>component</tag> diff --git a/civicrm/ext/civi_member/info.xml b/civicrm/ext/civi_member/info.xml index 7e7e7cca3e9a9854b86795ab67c6a7c569563f8f..5feacc2b28e87684b3b8fcdffc9d946b3b2bbf7b 100644 --- a/civicrm/ext/civi_member/info.xml +++ b/civicrm/ext/civi_member/info.xml @@ -13,7 +13,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2023-04-08</releaseDate> - <version>5.63.1</version> + <version>5.63.2</version> <develStage>stable</develStage> <tags> <tag>component</tag> diff --git a/civicrm/ext/civi_pledge/info.xml b/civicrm/ext/civi_pledge/info.xml index adf85af640accd7eeff9786976ce2f89243bb064..6e5b7dde6fd382780d58ed183e66c1f0c5e1c757 100644 --- a/civicrm/ext/civi_pledge/info.xml +++ b/civicrm/ext/civi_pledge/info.xml @@ -13,7 +13,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2023-04-08</releaseDate> - <version>5.63.1</version> + <version>5.63.2</version> <develStage>stable</develStage> <tags> <tag>component</tag> diff --git a/civicrm/ext/civi_report/info.xml b/civicrm/ext/civi_report/info.xml index cf9630df279c211b497a67a7bac24c65d4f3e02c..2ae5faca4a2971a9d9cc3aff4c3063aa0005f786 100644 --- a/civicrm/ext/civi_report/info.xml +++ b/civicrm/ext/civi_report/info.xml @@ -13,7 +13,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2023-04-08</releaseDate> - <version>5.63.1</version> + <version>5.63.2</version> <develStage>stable</develStage> <tags> <tag>component</tag> diff --git a/civicrm/ext/civicrm_admin_ui/info.xml b/civicrm/ext/civicrm_admin_ui/info.xml index 475e11fc55ccb2571fa2069daf0cd02295f9f1b7..9b7fabb70948c4300798084a0a09e5eaa7dabc50 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.63.1</version> + <version>5.63.2</version> <develStage>alpha</develStage> <compatibility> <ver>5.63</ver> diff --git a/civicrm/ext/civigrant/info.xml b/civicrm/ext/civigrant/info.xml index d14d0ab5067d2af1be9e08dcf5b8373d4a6a4727..0d61b2fbfb3e877a1837e6bdff513988f24394b7 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.63.1</version> + <version>5.63.2</version> <develStage>stable</develStage> <compatibility> <ver>5.63</ver> diff --git a/civicrm/ext/civiimport/info.xml b/civicrm/ext/civiimport/info.xml index e5d4d552594d9f41db36c4e73ce37d9d7edef690..62d502088018dcb195db17c7ee98a1cd12a00ffc 100644 --- a/civicrm/ext/civiimport/info.xml +++ b/civicrm/ext/civiimport/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2022-08-11</releaseDate> - <version>5.63.1</version> + <version>5.63.2</version> <develStage>alpha</develStage> <compatibility> <ver>5.63</ver> diff --git a/civicrm/ext/ckeditor4/info.xml b/civicrm/ext/ckeditor4/info.xml index 45bde4739061a312d7c71a2780223feaafa44d06..36384e6674c508046afcad2e53c19fc73123135a 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.63.1</version> + <version>5.63.2</version> <develStage>stable</develStage> <compatibility> <ver>5.63</ver> diff --git a/civicrm/ext/contributioncancelactions/info.xml b/civicrm/ext/contributioncancelactions/info.xml index 20065bd149e25ff5a544f50013a83fbc99f69c59..8f1820181a72e9f8d6cb69e6217f5cca94cdb257 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.63.1</version> + <version>5.63.2</version> <develStage>stable</develStage> <compatibility> <ver>5.63</ver> diff --git a/civicrm/ext/elavon/info.xml b/civicrm/ext/elavon/info.xml index cc77285bd1fba0e9530625d4381aa83d16868e79..97d8155da945e1afa74fafb23dce2f9e0ce31325 100644 --- a/civicrm/ext/elavon/info.xml +++ b/civicrm/ext/elavon/info.xml @@ -15,7 +15,7 @@ <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2022-08-05</releaseDate> - <version>5.63.1</version> + <version>5.63.2</version> <develStage>stable</develStage> <compatibility> <ver>5.63</ver> diff --git a/civicrm/ext/eventcart/info.xml b/civicrm/ext/eventcart/info.xml index ec1ada469089be403d99640047f8a195e01ec36d..12f50cd0045cfd3c0d6baf5987b9a6f6495e86b4 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.63.1</version> + <version>5.63.2</version> <tags> <tag>mgmt:hidden</tag> </tags> diff --git a/civicrm/ext/ewaysingle/info.xml b/civicrm/ext/ewaysingle/info.xml index a0e4d7de48ea1385720a8add4f97a18288bc0599..21f19ac43f6b1ae5ce571f12026fcf5a6b519955 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.63.1</version> + <version>5.63.2</version> <tags> <tag>mgmt:hidden</tag> </tags> diff --git a/civicrm/ext/financialacls/info.xml b/civicrm/ext/financialacls/info.xml index 6604c189161bf3c4756e7b17370aa87af5b6b53d..30d77b0a143808213ed2ef7a296e49281e10f038 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.63.1</version> + <version>5.63.2</version> <develStage>stable</develStage> <compatibility> <ver>5.63</ver> diff --git a/civicrm/ext/flexmailer/info.xml b/civicrm/ext/flexmailer/info.xml index e2c83abe5cc2980ed4d9fc4680de4e1f0f5571e0..fd56ef5fc075e1ba115e89a58dfdfbe3bd77a4d1 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.63.1</version> + <version>5.63.2</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 e054fadef05a83a1847081efb63c4bbab8cd6874..706c3d95e200542ab338a646a9d9e3434cc6f94e 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.63.1</version> + <version>5.63.2</version> <tags> <tag>mgmt:hidden</tag> </tags> diff --git a/civicrm/ext/legacycustomsearches/info.xml b/civicrm/ext/legacycustomsearches/info.xml index ddfc1d8028d38169e01b12359a853e586a8a80f8..88eecd744d33146a59aed6fd1aa886c79f0318de 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.63.1</version> + <version>5.63.2</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 1af05b9140e65625fcdc1c5f41e5870fba678d1b..ea4159d579c168363ed34a5504cc1c7f076796cd 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.63.1</version> + <version>5.63.2</version> <develStage>alpha</develStage> <compatibility> <ver>5.63</ver> diff --git a/civicrm/ext/oauth-client/info.xml b/civicrm/ext/oauth-client/info.xml index b36d0832dc68e87bfaeb11e655f166447db3ab6c..4af5bbe48e5ce6b8d2f2a063806780dd5099e47c 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.63.1</version> + <version>5.63.2</version> <develStage>stable</develStage> <compatibility> <ver>5.63</ver> diff --git a/civicrm/ext/payflowpro/info.xml b/civicrm/ext/payflowpro/info.xml index 38bd2edd506a1e456af5fa1c6fa66d4341b887a7..8d4f170cc1203e7e7c252e54d1e0f297165623ee 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.63.1</version> + <version>5.63.2</version> <develStage>stable</develStage> <compatibility> <ver>5.63</ver> diff --git a/civicrm/ext/recaptcha/info.xml b/civicrm/ext/recaptcha/info.xml index e25398f9a3d91643d4ce0235f376dc624b741819..d0116df2d7e0af8c3051ffdbf54eccd14890341f 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.63.1</version> + <version>5.63.2</version> <tags> <tag>mgmt:hidden</tag> </tags> diff --git a/civicrm/ext/search_kit/info.xml b/civicrm/ext/search_kit/info.xml index 2a0d6c1abd57ad2acebc9c819e02b635f0202fd8..9b557d99540e503427c37acd3dbe280a70922d3a 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.63.1</version> + <version>5.63.2</version> <develStage>stable</develStage> <tags> <tag>mgmt:required</tag> diff --git a/civicrm/ext/sequentialcreditnotes/info.xml b/civicrm/ext/sequentialcreditnotes/info.xml index c955fe06bc024f34011ac836ad7bdcf7bb083eae..372c91a492f3aed482fd94c106a80f42a295664d 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.63.1</version> + <version>5.63.2</version> <tags> <tag>mgmt:hidden</tag> </tags> diff --git a/civicrm/release-notes.md b/civicrm/release-notes.md index e3be85922839fb823436bc209882e636c091d0e9..d59b53ae4cf2d8adaa4cd347ba91f2bcda1b02d4 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.63.2 + +Released July 26, 2023 + +- **[Synopsis](release-notes/5.63.2.md#synopsis)** +- **[Bugs resolved](release-notes/5.63.2.md#bugs)** +- **[Credits](release-notes/5.63.2.md#credits)** +- **[Feedback](release-notes/5.63.2.md#feedback)** + ## CiviCRM 5.63.1 Released July 7, 2023 diff --git a/civicrm/release-notes/5.63.2.md b/civicrm/release-notes/5.63.2.md new file mode 100644 index 0000000000000000000000000000000000000000..9351a718face2b0513fd99ffd118d5e9f762ffd7 --- /dev/null +++ b/civicrm/release-notes/5.63.2.md @@ -0,0 +1,40 @@ +# CiviCRM 5.63.2 + +Released July 26, 2023 + +- **[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** | +| Fix security vulnerabilities? | no | + +## <a name="bugs"></a>Bugs resolved + +* **_Custom Data_: Fatal error handling radio buttons in varied circumstances ([dev/core#4355](https://lab.civicrm.org/dev/core/-/issues/4355): [#26517](https://github.com/civicrm/civicrm-core/pull/26517))** +* **_Price Sets_: Browser error handling select field ([dev/core#4439](https://lab.civicrm.org/dev/core/-/issues/4439): [#26870](https://github.com/civicrm/civicrm-core/pull/26870))** +* **_System Recommendations_: PHP 7.4 is recommended ([#26799](https://github.com/civicrm/civicrm-core/pull/26799))** + +## <a name="credits"></a>Credits + +This release was developed by the following authors and reviewers: + +Wildsight - Lars Sander-Green; Wikimedia Foundation - Eileen McNaughton; Megaphone +Technology Consulting - Jon Goldberg; JMA Consulting - Seamus Lee; Dave D; Coop SymbioTIC +- Mathieu Lutfy; CiviDesk - Yashodha Chaku; CiviCRM - Coleman Watts, Tim Otten + +## <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 437b6934e9eb89a18d8089985bc87c38f1a4a3bb..7ad4e1599c9ab04be5953e198f9cca153ebb5e56 100644 --- a/civicrm/sql/civicrm_data.mysql +++ b/civicrm/sql/civicrm_data.mysql @@ -24025,4 +24025,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.63.1'; +UPDATE civicrm_domain SET version = '5.63.2'; diff --git a/civicrm/sql/civicrm_generated.mysql b/civicrm/sql/civicrm_generated.mysql index 4475f05a63ae30cb95186c67c19d7c52c240b9bc..4ee7e20a1555a0be90654f235c4c3a766156e099 100644 --- a/civicrm/sql/civicrm_generated.mysql +++ b/civicrm/sql/civicrm_generated.mysql @@ -3042,7 +3042,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.63.1',1,NULL,'a:1:{s:5:\"en_US\";a:0:{}}'); + (1,'Default Domain Name',NULL,'5.63.2',1,NULL,'a:1:{s:5:\"en_US\";a:0:{}}'); /*!40000 ALTER TABLE `civicrm_domain` ENABLE KEYS */; UNLOCK TABLES; diff --git a/civicrm/templates/CRM/Custom/Form/Edit/CustomField.tpl b/civicrm/templates/CRM/Custom/Form/Edit/CustomField.tpl index 7a4089fb035b8bade64ba3ca5c7c49ca940ed83b..5a90fb207a6d9fd95f874e3606d96cb32f5fbf55 100644 --- a/civicrm/templates/CRM/Custom/Form/Edit/CustomField.tpl +++ b/civicrm/templates/CRM/Custom/Form/Edit/CustomField.tpl @@ -19,19 +19,17 @@ <td class="label">{$formElement.label}{if $element.help_post}{help id=$element.id file="CRM/Custom/Form/CustomField.hlp" title=$element.label}{/if}</td> <td class="html-adjust"> {assign var="count" value="1"} - {* sort by fails for option per line. Added a variable to iterate through the element array*} - {assign var="index" value="1"} {foreach name=outer key=key item=item from=$formElement} - {if $index < 10} - {assign var="index" value=`$index+1`} - {else} - {$formElement.$key.html} + {if is_array($item) && array_key_exists('html', $item)} + {$item.html} {if $count == $element.options_per_line} <br /> {assign var="count" value="1"} {else} {assign var="count" value=`$count+1`} {/if} + {else} + {* Skip because this isn't one of the numeric keyed elements that are the options to display, it's non-numeric keys like the field label and metadata. *} {/if} {/foreach} diff --git a/civicrm/vendor/autoload.php b/civicrm/vendor/autoload.php index fb9016d069bd9a82a528e14405d1e529e96f1943..f59d37b2fa3debc1137c83b96114d3135fe8add4 100644 --- a/civicrm/vendor/autoload.php +++ b/civicrm/vendor/autoload.php @@ -4,4 +4,4 @@ require_once __DIR__ . '/composer/autoload_real.php'; -return ComposerAutoloaderInitfd642c2119abd8f57d9c6c5ebd3c4b14::getLoader(); +return ComposerAutoloaderInit7f1ba51e57274bc8afccdd852fc46a9b::getLoader(); diff --git a/civicrm/vendor/composer/autoload_real.php b/civicrm/vendor/composer/autoload_real.php index 3c3b61ed58fad7ca3562c7a4472cc379e325522e..e2ed5939ea27facd761014b2a232b8f37f4d0efa 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 ComposerAutoloaderInitfd642c2119abd8f57d9c6c5ebd3c4b14 +class ComposerAutoloaderInit7f1ba51e57274bc8afccdd852fc46a9b { private static $loader; @@ -24,9 +24,9 @@ class ComposerAutoloaderInitfd642c2119abd8f57d9c6c5ebd3c4b14 require __DIR__ . '/platform_check.php'; - spl_autoload_register(array('ComposerAutoloaderInitfd642c2119abd8f57d9c6c5ebd3c4b14', 'loadClassLoader'), true, true); + spl_autoload_register(array('ComposerAutoloaderInit7f1ba51e57274bc8afccdd852fc46a9b', 'loadClassLoader'), true, true); self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__))); - spl_autoload_unregister(array('ComposerAutoloaderInitfd642c2119abd8f57d9c6c5ebd3c4b14', 'loadClassLoader')); + spl_autoload_unregister(array('ComposerAutoloaderInit7f1ba51e57274bc8afccdd852fc46a9b', 'loadClassLoader')); $includePaths = require __DIR__ . '/include_paths.php'; $includePaths[] = get_include_path(); @@ -36,7 +36,7 @@ class ComposerAutoloaderInitfd642c2119abd8f57d9c6c5ebd3c4b14 if ($useStaticLoader) { require __DIR__ . '/autoload_static.php'; - call_user_func(\Composer\Autoload\ComposerStaticInitfd642c2119abd8f57d9c6c5ebd3c4b14::getInitializer($loader)); + call_user_func(\Composer\Autoload\ComposerStaticInit7f1ba51e57274bc8afccdd852fc46a9b::getInitializer($loader)); } else { $map = require __DIR__ . '/autoload_namespaces.php'; foreach ($map as $namespace => $path) { @@ -57,12 +57,12 @@ class ComposerAutoloaderInitfd642c2119abd8f57d9c6c5ebd3c4b14 $loader->register(true); if ($useStaticLoader) { - $includeFiles = Composer\Autoload\ComposerStaticInitfd642c2119abd8f57d9c6c5ebd3c4b14::$files; + $includeFiles = Composer\Autoload\ComposerStaticInit7f1ba51e57274bc8afccdd852fc46a9b::$files; } else { $includeFiles = require __DIR__ . '/autoload_files.php'; } foreach ($includeFiles as $fileIdentifier => $file) { - composerRequirefd642c2119abd8f57d9c6c5ebd3c4b14($fileIdentifier, $file); + composerRequire7f1ba51e57274bc8afccdd852fc46a9b($fileIdentifier, $file); } return $loader; @@ -74,7 +74,7 @@ class ComposerAutoloaderInitfd642c2119abd8f57d9c6c5ebd3c4b14 * @param string $file * @return void */ -function composerRequirefd642c2119abd8f57d9c6c5ebd3c4b14($fileIdentifier, $file) +function composerRequire7f1ba51e57274bc8afccdd852fc46a9b($fileIdentifier, $file) { if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; diff --git a/civicrm/vendor/composer/autoload_static.php b/civicrm/vendor/composer/autoload_static.php index 304d45f41d52f73925b1cde66a84588027a4c282..acd1ea20b384bb01f2d9b46a0cfa9a2558dbd67c 100644 --- a/civicrm/vendor/composer/autoload_static.php +++ b/civicrm/vendor/composer/autoload_static.php @@ -4,7 +4,7 @@ namespace Composer\Autoload; -class ComposerStaticInitfd642c2119abd8f57d9c6c5ebd3c4b14 +class ComposerStaticInit7f1ba51e57274bc8afccdd852fc46a9b { public static $files = array ( 'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php', @@ -729,11 +729,11 @@ class ComposerStaticInitfd642c2119abd8f57d9c6c5ebd3c4b14 public static function getInitializer(ClassLoader $loader) { return \Closure::bind(function () use ($loader) { - $loader->prefixLengthsPsr4 = ComposerStaticInitfd642c2119abd8f57d9c6c5ebd3c4b14::$prefixLengthsPsr4; - $loader->prefixDirsPsr4 = ComposerStaticInitfd642c2119abd8f57d9c6c5ebd3c4b14::$prefixDirsPsr4; - $loader->prefixesPsr0 = ComposerStaticInitfd642c2119abd8f57d9c6c5ebd3c4b14::$prefixesPsr0; - $loader->fallbackDirsPsr0 = ComposerStaticInitfd642c2119abd8f57d9c6c5ebd3c4b14::$fallbackDirsPsr0; - $loader->classMap = ComposerStaticInitfd642c2119abd8f57d9c6c5ebd3c4b14::$classMap; + $loader->prefixLengthsPsr4 = ComposerStaticInit7f1ba51e57274bc8afccdd852fc46a9b::$prefixLengthsPsr4; + $loader->prefixDirsPsr4 = ComposerStaticInit7f1ba51e57274bc8afccdd852fc46a9b::$prefixDirsPsr4; + $loader->prefixesPsr0 = ComposerStaticInit7f1ba51e57274bc8afccdd852fc46a9b::$prefixesPsr0; + $loader->fallbackDirsPsr0 = ComposerStaticInit7f1ba51e57274bc8afccdd852fc46a9b::$fallbackDirsPsr0; + $loader->classMap = ComposerStaticInit7f1ba51e57274bc8afccdd852fc46a9b::$classMap; }, null, ClassLoader::class); } diff --git a/civicrm/vendor/composer/installed.php b/civicrm/vendor/composer/installed.php index a7239e86edf116736b08dae667ffadaf5c3b55e9..a581171d6c63924d5e16468bd09f1b2e7166a58d 100644 --- a/civicrm/vendor/composer/installed.php +++ b/civicrm/vendor/composer/installed.php @@ -5,7 +5,7 @@ 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), - 'reference' => '27dd9bcab5d0ece3f73e0c6d2a1c7d3966d03c58', + 'reference' => '609756834e7520dc43374aa1d30c47d09d080058', 'name' => 'civicrm/civicrm-core', 'dev' => true, ), @@ -43,7 +43,7 @@ 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), - 'reference' => '27dd9bcab5d0ece3f73e0c6d2a1c7d3966d03c58', + 'reference' => '609756834e7520dc43374aa1d30c47d09d080058', 'dev_requirement' => false, ), 'civicrm/civicrm-cxn-rpc' => array( diff --git a/civicrm/xml/version.xml b/civicrm/xml/version.xml index 5ca8b6b27d6297f5406301a4c56361b2369b6e90..ec0be5a990f4c98fb56c119a462859e5643af551 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.63.1</version_no> + <version_no>5.63.2</version_no> </version>