-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix. Install. Insert code after `namespace` anf `declare` directives declaration. * Fix. Public. JS relative path fixed. * Fix. apbct_restore_include_path. Now works on most types of servers. * Fix. apbct_set_include_path. Protect constant owerwriting tries. * New. Moodle integration. Detect CMS. * New. Moodle integration. Modify signup page to protect registrations. * Fix. Code. Constant definition fix. * Fix. Code. Die page fixed and refactored. * New. Moodle integration. Custom login page exclusion logic. * Fix. Updater. PHP notices fixed. * Fix. Server variables getting from $_SERVER instead of filter_input. * Fix. Common Helper. Add rule for decbin - int type. * Fix: checking the version of the curl for the correct choice of the type of request * Fix. Helper. Curl options fixed. * Fix: file_exists before unlink * Added params for cookies * Fixed cookie_secure * Fix: Fixed installation * Mod. PHP 8.1. Settings and Get fields any * CRLF -> LF * Mod. PHP 8.1 compatibility. * New. SFW. CustomDB implemented. (#15) * New. SFW. CustomDB implemented. * Fix. SFW. Update delay time. * Fix after review. * Fix. Common. Err class fixed. --------- Co-authored-by: Glomberg <bazz@bk.ru> * Fix. SFW. PHP 8.1 notices fixed. * Upd. Version number was increased to 2.7.0. * Fix. Btree. PHP 8.1 notice fixed. --------- Co-authored-by: alexandergull <alex.g@cleantalk.org> Co-authored-by: alexandergull <galyshev@cleantalk.org> Co-authored-by: Alex <45482252+alexandergull@users.noreply.github.com> Co-authored-by: svfcode <svfcode@mail.ru> Co-authored-by: Artem Anoshin <artem-anoshin@yandex.ru>
- Loading branch information
1 parent
fadffdd
commit 2e4370e
Showing
31 changed files
with
3,020 additions
and
441 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
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,42 @@ | ||
<?php | ||
$fw_nets_meta = array ( | ||
'line_length' => 26, | ||
'cols' => | ||
array ( | ||
'network' => | ||
array ( | ||
'type' => 'int', | ||
'length' => 11, | ||
), | ||
'mask' => | ||
array ( | ||
'type' => 'int', | ||
'length' => 11, | ||
), | ||
'status' => | ||
array ( | ||
'type' => 'int', | ||
'length' => 2, | ||
), | ||
'is_personal' => | ||
array ( | ||
'type' => 'int', | ||
'length' => 2, | ||
), | ||
), | ||
'description' => 'Test', | ||
'indexes' => | ||
array ( | ||
0 => | ||
array ( | ||
'columns' => | ||
array ( | ||
0 => 'network', | ||
), | ||
'status' => 'ready', | ||
'type' => 'btree', | ||
), | ||
), | ||
'cols_num' => 4, | ||
'rows' => 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
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.