-
-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Исправлены баги с функциями string_parse_list и string_explode_list;
Массовая рассылка из админки с опциями выбора пресета типографа и замены переноса строк на тег br; Запоминание параметров последней рассылки; Убрано неправильное предупреждение формы "Изменения могут не сохраниться" при настройке полей; Подготовка 2.17.1.
- Loading branch information
Showing
18 changed files
with
290 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[version] | ||
major = 2 | ||
minor = 17 | ||
build = 0 | ||
build = 1 | ||
date = 20241227 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +0,0 @@ | ||
ALTER TABLE `{#}perms_rules` CHANGE `name` `name` VARCHAR(64) NOT NULL COMMENT 'Название правила'; | ||
|
||
DROP TABLE IF EXISTS `{#}csp_logs`; | ||
CREATE TABLE `{#}csp_logs` ( | ||
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, | ||
`date_pub` timestamp NOT NULL DEFAULT current_timestamp(), | ||
`blocked_uri` varchar(255) DEFAULT NULL, | ||
`referrer` varchar(255) DEFAULT NULL, | ||
`line_number` smallint(6) DEFAULT NULL, | ||
`document_uri` varchar(255) DEFAULT NULL, | ||
`violated_directive` varchar(64) DEFAULT NULL, | ||
`effective_directive` varchar(64) DEFAULT NULL, | ||
`status_code` smallint(6) DEFAULT NULL, | ||
`ip` varbinary(16) DEFAULT NULL, | ||
PRIMARY KEY (`id`), | ||
KEY `date_pub` (`date_pub`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Логи CSP'; | ||
|
||
DELETE FROM {#}controllers WHERE `name` = 'csp'; | ||
INSERT INTO `{#}controllers` (`title`, `name`, `is_enabled`, `options`, `author`, `url`, `version`, `is_backend`, `is_external`) VALUES ('Content Security Policy', 'csp', 1, '---\nenable_csp: null\ncsp_str: \"default-src \'self\'; script-src \'unsafe-eval\' \'nonce-{nonce}\' \'strict-dynamic\'; style-src \'self\' data: \'unsafe-inline\' https://fonts.googleapis.com; img-src \'self\' data: https://instantcms.ru; font-src \'self\' data: https://fonts.gstatic.com\"\nis_report_only: 1\nenable_report: 1\n', 'InstantCMS Team', 'https://instantcms.ru', '2.0', 1, NULL); | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.