-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/dev' into master
- Loading branch information
Showing
15 changed files
with
843 additions
and
606 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
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?php | ||
$cleantalk_antispam_default_option = array( | ||
'status' => 1, | ||
'form_new_user' => 1, | ||
'form_comment_blog' => 1, | ||
'form_comment_forum' => 1, | ||
'form_forum_private_messages' => 1, | ||
'form_comment_treelike' => 1, | ||
'form_send_example' => 1, | ||
'form_order' => 1, | ||
'web_form' => 1, | ||
'form_global_check' => 0, | ||
'form_global_check_without_email' => 0, | ||
'form_sfw' => 1, | ||
'site_exclusions' => '', | ||
'form_exclusions_url' => '', | ||
'form_exclusions_url__regexp' => 0, | ||
'form_exclusions_fields' => '', | ||
'form_exclusions_fields__regexp' => 0, | ||
'form_exclusions_webform' => '', | ||
'complete_deactivation' => 0, | ||
); |
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,9 +1,23 @@ | ||
Fix. Settings. API key fieldset moved to the top of the section. | ||
Fix. Settings. Reset settings button implemented. | ||
Fix. Settings. Init default setting on installation. | ||
New. Settings. Complete deactivation option added. | ||
New. Settings. Complete deactivation implemented. | ||
New. Settings. Regexp for fields exclusions. | ||
New. Settings. Saving exclusion regexp implemented. | ||
Fix. Exclusion. Fields exclusions fixed. | ||
New. Exclusion. Url exclusions by regexp. | ||
<ul> | ||
<li>* Fix: all functions in the class CleantalkAntispam are now static for compatibility with php 8</li> | ||
<li>* New. Options. Use bitrix API.</li> | ||
<li>* New. default_option.php. Default settings file.</li> | ||
<li>* Imp. options.php. Handle fail messages.</li> | ||
<li>* Imp. options.php. Old COption legacy removed.</li> | ||
<li>* Fix. Uninstall. Complete deactivation now works correct.</li> | ||
<li>* New. Install. Use default options if no options set (new install or if complete deactivation performed)</li> | ||
<li>* Fix. After tests. Exclusion for SFW module settings that placed after uninstallation process.</li> | ||
<li>* Fix. After review. Old PHP version compatibility in access keys comparison.</li> | ||
<li>* Fix. SFW test. Now displays test page correct and always runs in the session.</li> | ||
<li>* Fix. Settings page. Remove spaces in URL exclusions.</li> | ||
<li>* Fix. Exclusions. Page with URL exclusions now do not load JS.</li> | ||
<li>* Fix. Description wrapped by list.</li> | ||
<li>* Fix. Getting fields any fixed.</li> | ||
<li>* fix: fixed warning in preg_match</li> | ||
<li>* Fix: fixed preg_match in OnBeforeResultAddHandler()</li> | ||
<li>* fixed static functions</li> | ||
<li>* Fix. Skip service request - iblock.vode component ajax loading.</li> | ||
<li>* Fix. SFW. Updating process fixed.</li> | ||
<li>* Mod: SFW send logs is fixed</li> | ||
<li>* Upd. SFW. Implemented personal list.</li> | ||
</ul> |
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,23 @@ | ||
Настройки: Поле API KEY перемещено вверх страницы. | ||
Настройки: Сброс настроек реализован. | ||
Настройки: Реализованы значения настроек по умолчанию. | ||
Новое: Полная деактивация реализована. | ||
Настройки: Опция исключений по URL и имени поля формы теперь может сравнивать по регулярному выражению. | ||
<ul> | ||
<li>* Fix: all functions in the class CleantalkAntispam are now static for compatibility with php 8</li> | ||
<li>* New. Options. Use bitrix API.</li> | ||
<li>* New. default_option.php. Default settings file.</li> | ||
<li>* Imp. options.php. Handle fail messages.</li> | ||
<li>* Imp. options.php. Old COption legacy removed.</li> | ||
<li>* Fix. Uninstall. Complete deactivation now works correct.</li> | ||
<li>* New. Install. Use default options if no options set (new install or if complete deactivation performed)</li> | ||
<li>* Fix. After tests. Exclusion for SFW module settings that placed after uninstallation process.</li> | ||
<li>* Fix. After review. Old PHP version compatibility in access keys comparison.</li> | ||
<li>* Fix. SFW test. Now displays test page correct and always runs in the session.</li> | ||
<li>* Fix. Settings page. Remove spaces in URL exclusions.</li> | ||
<li>* Fix. Exclusions. Page with URL exclusions now do not load JS.</li> | ||
<li>* Fix. Description wrapped by list.</li> | ||
<li>* Fix. Getting fields any fixed.</li> | ||
<li>* fix: fixed warning in preg_match</li> | ||
<li>* Fix: fixed preg_match in OnBeforeResultAddHandler()</li> | ||
<li>* fixed static functions</li> | ||
<li>* Fix. Skip service request - iblock.vode component ajax loading.</li> | ||
<li>* Fix. SFW. Updating process fixed.</li> | ||
<li>* Mod: SFW send logs is fixed</li> | ||
<li>* Upd. SFW. Implemented personal list.</li> | ||
</ul> |
Oops, something went wrong.