Skip to content

Commit d002d7c

Browse files
committed
Version 4.8.5
2 parents ad35e43 + a9fb48d commit d002d7c

5 files changed

Lines changed: 13 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# (MODX)EvolutionCMS.plugins.ManagerManager.mm_ddMultipleFields changelog
22

33

4+
## Version 4.8.5 (2021-10-03)
5+
* \* (MODX)EvolutionsCMS.libraries.ddTools is including from `assets/libs/ddTools/`, because ManagerManager does not contain the library files anymore.
6+
7+
48
## Version 4.8.4 (2021-01-15)
59
* \* `jQuery.ddMM.mm_ddMultipleFields.init`: Missing table header was fixed.
610
* \+ README → Links → Packagist.

CHANGELOG_ru.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# (MODX)EvolutionCMS.plugins.ManagerManager.mm_ddMultipleFields changelog
22

33

4+
## Версия 4.8.5 (2021-10-03)
5+
* \* (MODX)EvolutionsCMS.libraries.ddTools подключается из `assets/libs/ddTools/`, потому что ManagerManager больше не содержит файлов библиотеки.
6+
7+
48
## Версия 4.8.4 (2021-01-15)
59
* \* `jQuery.ddMM.mm_ddMultipleFields.init`: Отсутствующий заголовок таблицы исправлен.
610
* \+ README → Ссылки → Packagist.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dd/evolutioncms-plugins-managermanager-mm_ddmultiplefields",
3-
"version": "4.8.4",
3+
"version": "4.8.5",
44
"description": "Widget for plugin ManagerManager that allows you to add any number of fields values (TV) in one document (values are written in field as a JSON object). For example: a few images.",
55
"keywords": [
66
"modx",

ddmultiplefields.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?php
22
/**
33
* (MODX)EvolutionCMS.plugins.ManagerManager.mm_ddMultipleFields
4-
* @version 4.8.4 (2021-01-15)
4+
* @version 4.8.5 (2021-10-03)
55
*
66
* @link https://code.divandesign.biz/modx/mm_ddmultiplefields
77
*
8-
* @copyright 2012–2020 DD Group {@link http://DivanDesign.biz }
8+
* @copyright 2012–2021 DD Group {@link http://DivanDesign.biz }
99
*/
1010

1111
function mm_ddMultipleFields($params){
@@ -107,7 +107,7 @@ function mm_ddMultipleFields($params){
107107
);
108108

109109
$e->output($output);
110-
}else if ($e->name == 'OnDocFormRender'){
110+
}elseif ($e->name == 'OnDocFormRender'){
111111
global $mm_current_page;
112112

113113
$params->fields = tplUseTvs(

richtext/index.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,7 @@
8888
//Include the ddTools library
8989
require_once(
9090
$modx->getConfig('base_path') .
91-
$mmDir .
92-
'install/libs/ddTools/modx.ddtools.class.php'
91+
'assets/libs/ddTools/modx.ddtools.class.php'
9392
);
9493

9594
$temp = $modx->invokeEvent(

0 commit comments

Comments
 (0)