Skip to content

Commit 034de4a

Browse files
authored
[6.0] Upmerge 2025-08-28 (#46001)
* [5.3] Translation Update (#45983) * Fix copy / paste error (#45979) * [5.3] Security updates for composer and npm dependencies for the upcoming 5.3.4 release (#45984) * composer update enshrined/svg-sanitize to 0.22.0 * npm fix audit issues * [5.3] Update TinyMCE from 6.8.5 to 6.8.6 to fix TinyMCE issue with cursor placement (#45987) * npm update tinymce from 6.8.5 to 6.8.6 * Update version in tinymce.xml * [5.4] Revert b/c breaking change in AbstractView::get (#45940) * Revert "[5.4] Replace deprecation AbstractView::get() in layouts (#45702)" * This reverts commit f1906ba. * [5.3] Update joomla/filesystem to fix extension uploads when post_max_size is 0 (#45986) * [5.4] Upmerge 2025-08-28 (#45997) * [5.3] Translation Update #45983 * [5.3] Fix copy / paste error in form fields #45979 * [5.3] Security updates for composer and npm dependencies for the upcoming 5.3.4 release #45984 * [5.3] Update joomla/filesystem to fix extension uploads when post_max_size is 0 #45986 * [5.4] Composer update joomla/filesystem to 3.2.0 (#45999) * Update content-hash
1 parent f05a901 commit 034de4a

File tree

20 files changed

+46
-45
lines changed

20 files changed

+46
-45
lines changed

administrator/components/com_menus/layouts/joomla/menu/edit_modules.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
$saveHistory = ComponentHelper::getParams($component)->get('save_history', 0);
2828

29-
$fields = $displayData->fields ?? [
29+
$fields = $displayData->get('fields') ?: [
3030
['parent', 'parent_id'],
3131
['published', 'state', 'enabled'],
3232
['category', 'catid'],
@@ -39,7 +39,7 @@
3939
'version_note',
4040
];
4141

42-
$hiddenFields = $displayData->hidden_fields ?? [];
42+
$hiddenFields = $displayData->get('hidden_fields') ?: [];
4343

4444
if (!$saveHistory) {
4545
$hiddenFields[] = 'version_note';

components/com_contact/src/View/Categories/HtmlView.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ class HtmlView extends CategoriesView
3535
* @var string The name of the extension for the category
3636
* @since 3.2
3737
*/
38-
public $extension = 'com_contact';
38+
protected $extension = 'com_contact';
3939
}

components/com_content/src/View/Categories/HtmlView.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ class HtmlView extends CategoriesView
3535
* @var string The name of the extension for the category
3636
* @since 3.2
3737
*/
38-
public $extension = 'com_content';
38+
protected $extension = 'com_content';
3939
}

components/com_newsfeeds/src/View/Categories/HtmlView.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ class HtmlView extends CategoriesView
3535
* @var string The name of the extension for the category
3636
* @since 3.2
3737
*/
38-
public $extension = 'com_newsfeeds';
38+
protected $extension = 'com_newsfeeds';
3939
}

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
"ext-dom": "*",
9797
"composer/ca-bundle": "^1.5.7",
9898
"dragonmantank/cron-expression": "^3.4.0",
99-
"enshrined/svg-sanitize": "^0.21.0",
99+
"enshrined/svg-sanitize": "^0.22.0",
100100
"lcobucci/jwt": "^4.3.0",
101101
"web-token/jwt-library": "^3.4.8",
102102
"phpseclib/bcmath_compat": "^2.0.3",

composer.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

installation/language/tr-TR/joomla.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ INSTL_DATABASE_NO_SCHEMA="Bu veritabanı türü için veritabanı şeması yok."
8484
INSTL_DATABASE_PASSWORD_DESC="Oluşturduğunuz veritabanı şifresini veya sunucunuzun sağladığı şifreyi girin."
8585
INSTL_DATABASE_PREFIX_DESC="Bir tablo öneki girin veya rastgele oluşturulmuş olanı kullanın."
8686
INSTL_DATABASE_PREFIX_DUPLICATE_DESC="Aynı öneke sahip tablolara sahip mevcut bir veritabanı kullanıyorsanız, Joomla bu mevcut tabloları \"bak_\" önekini ekleyerek yeniden adlandıracaktır."
87+
INSTL_DATABASE_PREFIX_MSG="Tablo öneki bir harfle başlamalı, isteğe bağlı olarak alfanümerik karakterlerle izlenmeli ve alt çizgiyle bitmelidir."
8788
INSTL_DATABASE_RESPONSE_ERROR="Yükleme işlemi başarısız oldu."
8889
INSTL_DATABASE_TYPE_DESC="Veritabanı türünü seçin."
8990
INSTL_DATABASE_USER_DESC="Oluşturduğunuz veritabanı kullanıcı adını veya barındırıcınız tarafından sağlanan kullanıcı adını girin."

layouts/joomla/content/categories_default.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<?php // If there is a description in the menu parameters use that; ?>
2424
<?php if ($displayData->params->get('categories_description')) : ?>
2525
<div class="category-desc base-desc">
26-
<?php echo HTMLHelper::_('content.prepare', $displayData->params->get('categories_description'), '', $displayData->extension . '.categories'); ?>
26+
<?php echo HTMLHelper::_('content.prepare', $displayData->params->get('categories_description'), '', $displayData->get('extension') . '.categories'); ?>
2727
</div>
2828
<?php else : ?>
2929
<?php // Otherwise get one from the database if it exists. ?>

layouts/joomla/content/category_default.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* layout you need to close this div either by overriding this file or in your main layout.
2121
*/
2222
$params = $displayData->params;
23-
$category = $displayData->category;
23+
$category = $displayData->get('category');
2424
$extension = $category->extension;
2525
$canEdit = $params->get('access-edit');
2626
$className = substr($extension, 4);
@@ -89,7 +89,7 @@
8989
<?php endif; ?>
9090
<?php echo $displayData->loadTemplate($displayData->subtemplatename); ?>
9191

92-
<?php if ($displayData->maxLevel != 0 && $displayData->children) : ?>
92+
<?php if ($displayData->maxLevel != 0 && $displayData->get('children')) : ?>
9393
<div class="cat-children">
9494
<?php if ($params->get('show_category_heading_title_text', 1) == 1) : ?>
9595
<h3>

layouts/joomla/edit/admin_modules.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
$form = $displayData->getForm();
1818
$input = $app->getInput();
1919

20-
$fields = $displayData->fields ?? [
20+
$fields = $displayData->get('fields') ?: [
2121
['parent', 'parent_id'],
2222
['published', 'state', 'enabled'],
2323
['category', 'catid'],
@@ -30,7 +30,7 @@
3030
'version_note',
3131
];
3232

33-
$hiddenFields = $displayData->hidden_fields ?? [];
33+
$hiddenFields = $displayData->get('hidden_fields') ?: [];
3434

3535
if (!ModuleHelper::isAdminMultilang()) {
3636
$hiddenFields[] = 'language';

0 commit comments

Comments
 (0)