Skip to content

Commit c850fd8

Browse files
authored
Merge branch '5.2-dev' into due_tasks
2 parents 910e8aa + f961e0d commit c850fd8

File tree

41 files changed

+3298
-112
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+3298
-112
lines changed

administrator/components/com_associations/src/Helper/AssociationsHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public static function getAssociationList($extensionName, $typeName, $itemId)
7272
}
7373

7474
/**
75-
* Get the the instance of the extension helper class
75+
* Get the instance of the extension helper class
7676
*
7777
* @param string $extensionName The extension name with com_
7878
*

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ public function compareUpdateVersion($extension)
527527
/**
528528
* Get a message of the tables skipped and checked
529529
*
530-
* @param array $status status of of the update files
530+
* @param array $status status of the update files
531531
*
532532
* @return array Messages with the errors with the update version
533533
*

administrator/components/com_media/resources/scripts/components/modals/create-folder-modal.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export default {
8080
},
8181
},
8282
methods: {
83-
/* Check if the the form is valid */
83+
/* Check if the form is valid */
8484
isValid() {
8585
return (this.folder);
8686
},

administrator/components/com_messages/src/Field/UserMessagesField.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ protected function getGroups()
7878
/**
7979
* Method to get the users to exclude from the list of users
8080
*
81-
* @return array|null array of users to exclude or null to to not exclude them
81+
* @return array|null array of users to exclude or null to not exclude them
8282
*
8383
* @since 1.6
8484
*/

administrator/language/en-GB/plg_content_pagenavigation.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
; Note : All ini files need to be saved as UTF-8
55

66
PLG_CONTENT_PAGENAVIGATION="Content - Page Navigation"
7+
PLG_PAGENAVIGATION_ARIA_LABEL="Page Navigation"
78
PLG_PAGENAVIGATION_FIELD_DISPLAY_LABEL="Link Text"
89
PLG_PAGENAVIGATION_FIELD_POSITION_LABEL="Position"
910
PLG_PAGENAVIGATION_FIELD_RELATIVE_LABEL="Relative To"

build/media_source/templates/administrator/atum/scss/blocks/_treeselect.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
display: inline-block;
6565
padding: 0;
6666
margin-right: .1rem;
67-
color: var(--atum-btn-bg);
67+
color: var(--template-link-color);
6868
text-align: center;
6969
cursor: pointer;
7070
}

installation/sql/mysql/base.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ CREATE TABLE IF NOT EXISTS `#__assets` (
1111
`lft` int NOT NULL DEFAULT 0 COMMENT 'Nested set lft.',
1212
`rgt` int NOT NULL DEFAULT 0 COMMENT 'Nested set rgt.',
1313
`level` int unsigned NOT NULL COMMENT 'The cached level in the nested tree.',
14-
`name` varchar(50) NOT NULL COMMENT 'The unique name for the asset.\n',
14+
`name` varchar(50) NOT NULL COMMENT 'The unique name for the asset.',
1515
`title` varchar(100) NOT NULL COMMENT 'The descriptive title for the asset.',
1616
`rules` varchar(5120) NOT NULL COMMENT 'JSON encoded access control.',
1717
PRIMARY KEY (`id`),

libraries/src/Form/Field/UserField.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ protected function getGroups()
163163
/**
164164
* Method to get the users to exclude from the list of users
165165
*
166-
* @return string[] Array of users to exclude or null to to not exclude them
166+
* @return string[] Array of users to exclude or null to not exclude them
167167
*
168168
* @since 1.6
169169
*/

libraries/src/HTML/Helpers/Select.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -350,10 +350,10 @@ public static function integerlist($start, $end, $inc, $name, $attribs = null, $
350350
* option.label: The property in each option array to use as the
351351
* selection label attribute. If a "label" option is provided, defaults to
352352
* "label", if no label is given, defaults to null (none).
353-
* option.text: The property that will hold the the displayed text.
353+
* option.text: The property that will hold the displayed text.
354354
* Defaults to "text". If set to null, the option array is assumed to be a
355355
* list of displayable scalars.
356-
* @param string $optText The property that will hold the the displayed text. This
356+
* @param string $optText The property that will hold the displayed text. This
357357
* parameter is ignored if an options array is passed.
358358
* @param boolean $disable Not used.
359359
*
@@ -445,7 +445,7 @@ public static function option($value, $text = '', $optKey = 'value', $optText =
445445
* Defaults to "disable".
446446
* -option.key: The property that will hold the selection value.
447447
* Defaults to "value".
448-
* -option.text: The property that will hold the the displayed text.
448+
* -option.text: The property that will hold the displayed text.
449449
* Defaults to "text". If set to null, the option array is assumed to be a
450450
* list of displayable scalars.
451451
* @param string $optText The name of the object variable for the option text.

libraries/src/Helper/TagsHelper.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ public function createTagsFromField($tags)
297297
}
298298

299299
/**
300-
* Method to delete the tag mappings and #__ucm_content record for for an item
300+
* Method to delete the tag mappings and #__ucm_content record for an item
301301
*
302302
* @param TableInterface $table Table object of content table where delete occurred
303303
* @param integer|array $contentItemId ID of the content item. Or an array of key/value pairs with array key
@@ -338,7 +338,7 @@ public function deleteTagData(TableInterface $table, $contentItemId)
338338
* @param integer $id Id of the item to retrieve tags for.
339339
* @param boolean $getTagData If true, data from the tags table will be included, defaults to true.
340340
*
341-
* @return array Array of of tag objects
341+
* @return array Array of tag objects
342342
*
343343
* @since 3.1
344344
*/
@@ -397,7 +397,7 @@ public function getItemTags($contentType, $id, $getTagData = true)
397397
* @param array $ids Id of the item to retrieve tags for.
398398
* @param boolean $getTagData If true, data from the tags table will be included, defaults to true.
399399
*
400-
* @return array Array of of tag objects grouped by Id.
400+
* @return array Array of tag objects grouped by Id.
401401
*
402402
* @since 4.2.0
403403
*/
@@ -766,7 +766,7 @@ public function getTagTreeArray($id, &$tagTreeArray = [])
766766
* @param array $selectTypes Optional array of type ids or aliases to limit the results to. Often from a request.
767767
* @param boolean $useAlias If true, the alias is used to match, if false the type_id is used.
768768
*
769-
* @return array Array of of types
769+
* @return array Array of types
770770
*
771771
* @since 3.1
772772
*/

0 commit comments

Comments
 (0)