Skip to content

Commit

Permalink
Merge pull request #74 from dle-modules/1.4.2
Browse files Browse the repository at this point in the history
fixed #73
  • Loading branch information
pafnuty authored Jun 28, 2018
2 parents 2bbb94b + e80abb9 commit 1d8c89e
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Список изменений

## v1.4.1 (27.05.2017)
## v1.4.2 (08.06.2018)
- Исправлена ошибка совместимости с DLE13 (fixed #73)

## v1.4.1 (27.05.2018)
- Добавлена совместимость с DLE 13
- Обновлён dle_starter_kit до актуаьной версии

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# DLE-UniForm
![version](https://img.shields.io/badge/version-1.4.1-red.svg?style=flat-square "Version")
![version](https://img.shields.io/badge/version-1.4.2-red.svg?style=flat-square "Version")
![DLE](https://img.shields.io/badge/DLE-10.2--13.x-green.svg?style=flat-square "DLE Version")
[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](https://github.com/pafnuty/DLE-UniForm/blob/master/LICENSE)

Expand Down
3 changes: 3 additions & 0 deletions engine/ajax/uniform/uniform.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@

require_once ENGINE_DIR . '/classes/mysql.php';
require_once ENGINE_DIR . '/data/dbconfig.php';
if (file_exists(ENGINE_DIR . '/classes/plugins.class.php')) {
require_once ENGINE_DIR . '/classes/plugins.class.php';
}
require_once ENGINE_DIR . '/modules/functions.php';

dle_session();
Expand Down
4 changes: 2 additions & 2 deletions engine/modules/uniform/cfg.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
'maxFileSize' => !empty($maxFileSize) ? $maxFileSize : (isset($arConf['maxFileSize'])) ? $arConf['maxFileSize'] : false,
'allowedFileTypes' => !empty($allowedFileTypes) ? $allowedFileTypes : (isset($arConf['allowedFileTypes'])) ? $arConf['allowedFileTypes'] : false,
'parseSendMail' => !empty($parseSendMail) ? $parseSendMail : (isset($arConf['parseSendMail'])) ? $arConf['parseSendMail'] : false,
'version' => '1.4.1',
'releaseDate' => '27.05.2018',
'version' => '1.4.2',
'releaseDate' => '28.06.2018',
];
4 changes: 2 additions & 2 deletions engine/modules/uniform/install/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
'moduleDescr' => 'Унверсальные формы для DLE',

// Версия модуля
'moduleVersion' => '1.4.1',
'moduleVersion' => '1.4.2',

// Дата выпуска модуля
'moduleDate' => '27.05.2018',
'moduleDate' => '28.06.2018',

// Версии DLE, поддержваемые модулем
'minVersion' => '10.2',
Expand Down

0 comments on commit 1d8c89e

Please sign in to comment.