Skip to content

Commit 697124d

Browse files
committed
Merge remote-tracking branch 'Joomla/5.2-dev' into upmerges/2024-08-15
2 parents 87ec257 + 2468e08 commit 697124d

File tree

26 files changed

+574
-204
lines changed

26 files changed

+574
-204
lines changed

administrator/components/com_config/src/View/Application/HtmlView.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,14 @@ class HtmlView extends BaseHtmlView
7171
*
7272
* @var string
7373
*/
74-
protected $formclass;
74+
public $formclass;
7575

7676
/**
7777
* Description of the fieldset
7878
*
7979
* @var string
8080
*/
81-
protected $description;
81+
public $description;
8282

8383
/**
8484
* Execute and display a template script.

administrator/components/com_contact/config.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -980,8 +980,9 @@
980980
<field
981981
name="custom_reply"
982982
type="radio"
983-
layout="joomla.form.field.radio.switcher"
984983
label="COM_CONTACT_FIELD_CONFIG_CUSTOM_REPLY_LABEL"
984+
description="COM_CONTACT_FIELD_CONFIG_CUSTOM_REPLY_DESC"
985+
layout="joomla.form.field.radio.switcher"
985986
default="0"
986987
showon="show_email_form:1"
987988
>

administrator/components/com_contact/forms/contact.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -742,6 +742,7 @@
742742
name="custom_reply"
743743
type="list"
744744
label="COM_CONTACT_FIELD_CONFIG_CUSTOM_REPLY_LABEL"
745+
description="COM_CONTACT_FIELD_CONFIG_CUSTOM_REPLY_DESC"
745746
useglobal="true"
746747
validate="options"
747748
>

administrator/components/com_installer/src/Model/UpdatesitesModel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ protected function getListQuery()
554554

555555
// Process select filters.
556556
$supported = $this->getState('filter.supported');
557-
$enabled = $this->getState('filter.enabled');
557+
$enabled = $this->getState('filter.enabled', '');
558558
$type = $this->getState('filter.type');
559559
$clientId = $this->getState('filter.client_id');
560560
$folder = $this->getState('filter.folder');

administrator/components/com_languages/src/Model/OverridesModel.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,13 @@ protected function populateState($ordering = 'key', $direction = 'asc')
165165
$client = substr($language_client, -1);
166166
$language = substr($language_client, 0, -1);
167167

168+
// Sets the search filter.
169+
$search = $this->getUserStateFromRequest($this->context . '.filter.search', 'filter_search');
170+
$this->setState('filter.search', $search);
171+
168172
$this->setState('language_client', $language . $client);
173+
$this->setState('filter.client', $client ? 'administrator' : 'site');
174+
$this->setState('filter.language', $language);
169175

170176
// Add the 'language_client' value to the session to display a message if none selected
171177
$app->setUserState('com_languages.overrides.language_client', $language . $client);

administrator/language/en-GB/com_contact.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ COM_CONTACT_FIELD_CONFIG_CATEGORIES_DESC="These settings apply for Contact Categ
3636
COM_CONTACT_FIELD_CONFIG_CATEGORY_DESC="These settings apply for Contact Category Options unless they are changed for a specific menu item."
3737
COM_CONTACT_FIELD_CONFIG_CONTACT_FORM="Form"
3838
COM_CONTACT_FIELD_CONFIG_COUNTRY_LABEL="Country"
39+
COM_CONTACT_FIELD_CONFIG_CUSTOM_REPLY_DESC="Stops Joomla from sending the email, allowing for Plugins to handle integration with other systems."
3940
COM_CONTACT_FIELD_CONFIG_CUSTOM_REPLY_LABEL="Custom Reply"
4041
COM_CONTACT_FIELD_CONFIG_FAX_LABEL="Fax"
4142
COM_CONTACT_FIELD_CONFIG_INDIVIDUAL_CONTACT_DESC="These settings apply for a single Contact unless they are changed for a specific menu item or Contact."

administrator/language/en-GB/plg_system_sef.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66
PLG_SEF_DOMAIN_DESCRIPTION="If your site can be accessed through more than one domain enter the preferred (sometimes referred to as canonical) domain here. <br><strong>Note:</strong> https://example.com and https://www.example.com are different domains."
77
PLG_SEF_DOMAIN_LABEL="Site Domain"
8+
PLG_SEF_ENFORCESUFFIX_DESCRIPTION="When enabled and \"Add Suffix to URL\" is also enabled, URLs without suffix will be redirected to the correct one. From version 6.0 onwards this will be the standard behavior and not an option anymore."
9+
PLG_SEF_ENFORCESUFFIX_LABEL="Enforce a suffix by redirect"
810
PLG_SEF_INDEXPHP_DESCRIPTION="This option enables a stricter handling of 'index.php' in URLs when 'Use URL Rewriting' is enabled in Global Configuration. It will remove 'index.php' if a URL still contains it and redirect incoming requests with 'index.php' to the version without the 'index.php'."
911
PLG_SEF_INDEXPHP_LABEL="Strict handling of index.php"
1012
PLG_SEF_STRICTROUTING_DESCRIPTION="Prevent the router from accepting a lot of URLs which are deemed as duplicates and will automatically redirect to the correct URL with a 301."

components/com_contact/tmpl/categories/default.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -740,6 +740,7 @@
740740
name="custom_reply"
741741
type="list"
742742
label="COM_CONTACT_FIELD_CONFIG_CUSTOM_REPLY_LABEL"
743+
description="COM_CONTACT_FIELD_CONFIG_CUSTOM_REPLY_DESC"
743744
useglobal="true"
744745
class="form-select-color-state"
745746
validate="options"

components/com_contact/tmpl/category/default.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -757,6 +757,7 @@
757757
name="custom_reply"
758758
type="list"
759759
label="COM_CONTACT_FIELD_CONFIG_CUSTOM_REPLY_LABEL"
760+
description="COM_CONTACT_FIELD_CONFIG_CUSTOM_REPLY_DESC"
760761
useglobal="true"
761762
class="form-select-color-state"
762763
validate="options"

components/com_contact/tmpl/contact/default.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -444,6 +444,7 @@
444444
name="custom_reply"
445445
type="list"
446446
label="COM_CONTACT_FIELD_CONFIG_CUSTOM_REPLY_LABEL"
447+
description="COM_CONTACT_FIELD_CONFIG_CUSTOM_REPLY_DESC"
447448
useglobal="true"
448449
class="form-select-color-state"
449450
validate="options"

0 commit comments

Comments
 (0)