Kijin Sung
7799aa77a3
Merge pull request #2156 from mariko-f/master
...
일본어 번역 추가 및 수정
2023-07-24 16:59:11 +09:00
Kijin Sung
7efd6c4b18
Remove unnecessary code in Session class
2023-07-24 02:57:39 +09:00
Kijin Sung
899f65981d
Destroy conflicting cookies before, not after, setting own cookie
2023-07-24 02:57:08 +09:00
Kijin Sung
8cf68ec9f1
Resend autologin key if the client has not received it at first request
2023-07-24 02:55:30 +09:00
Kijin Sung
c41229eb17
Separate variables for backward compatibility into their own lines, to prevent confusion
2023-07-23 20:49:38 +09:00
Kijin Sung
a07b8fef58
Remove unnecessary setting of is_webview before session create
2023-07-23 20:45:34 +09:00
Kijin Sung
a2932ee8c8
Add admin setting to control the httpOnly attribute
2023-07-22 20:17:23 +09:00
Kijin Sung
56b37b7cbc
Remove session keys from unit tests
2023-07-22 20:04:54 +09:00
Kijin Sung
60a3edc994
Remove session keys, and always set httpOnly
2023-07-22 19:53:51 +09:00
Mariko Fukuda
600d725511
Fix Japanese translation
2023-07-22 19:31:00 +09:00
Kijin Sung
ced866d5e0
Remove session keys option
2023-07-22 19:22:33 +09:00
Kijin Sung
e22ae8259a
Open most member popup menus in the same window #2154
2023-07-17 21:58:25 +09:00
Kijin Sung
8740fc10c1
Version 2.1.2
2023-07-06 11:18:36 +09:00
Kijin Sung
3215631dfc
Move non-member voting, vote canceling, and report canceling options from Board module to Document & Comment modules
2023-07-05 22:27:17 +09:00
Kijin Sung
6479f3967b
Version 2.1.1
2023-06-26 11:20:29 +09:00
Kijin Sung
c0f9c77902
Revert "Display the current site's favicon if favicon.ico is requested"
...
This reverts commit 9fcd472d3f .
2023-06-25 19:41:50 +09:00
Kijin Sung
9fcd472d3f
Display the current site's favicon if favicon.ico is requested
2023-06-25 19:17:26 +09:00
Kijin Sung
5e1452982f
Add 'member' to list of reserved words
2023-06-25 17:33:02 +09:00
Kijin Sung
ddb4769bb1
Version 2.1.0
2023-06-21 20:09:50 +09:00
Kijin Sung
7b39fac881
Fix some modules not being updated during initial install
2023-06-21 00:39:52 +09:00
Kijin Sung
80fa953eb1
Fix undefined property in member info
2023-06-20 01:29:44 +09:00
Kijin Sung
26f052925b
Fix #2099 remove empty item for inaccessible menus that have accessible children
2023-06-19 22:05:11 +09:00
Kijin Sung
59113fc385
Mark DB->getHandle() as nullable, and update related methods
2023-06-19 15:22:06 +09:00
Kijin Sung
840617eece
Mark _query() and _fetch() as deprecated
2023-06-19 15:19:03 +09:00
Kijin Sung
66e1b93b78
Add explicit connect() and disconnect() methods to DB class
2023-06-19 15:00:39 +09:00
Kijin Sung
8b8ae5f64c
Remove WAP classes and mark getWAP() as deprecated
2023-06-19 14:50:00 +09:00
Kijin Sung
cc7155fe0b
Add mobileXE addon to blacklist
2023-06-19 14:47:04 +09:00
Kijin Sung
f34c27c26b
Fix truncated password hash for documents and comments written by non-members, if member module is configured to use a hashing algorithm that produces more than 60 chars
2023-06-19 01:59:27 +09:00
Kijin Sung
a40c5d82b6
Always add CSRF token to meta tag
2023-06-19 01:40:21 +09:00
Kijin Sung
5ba6346bec
Add security options to add X-Frame-Options and X-Content-Type-Options headers
...
- 보안 관련하여 널리 알려진 헤더 3종 가운데 2종을 기본 지원
- X-XSS-Protection 헤더는 IE 지원 종료로 불필요
2023-06-18 23:33:41 +09:00
Kijin Sung
e3ce2bcbcc
Remove gzip support; rely on webserver instead
2023-06-18 23:05:16 +09:00
Kijin Sung
de2a9288f2
Add option to control how many seconds to wait before compiling updated template file
2023-06-18 23:01:59 +09:00
Kijin Sung
73e7e17347
Fix warnings in PHP 8.2
2023-06-16 16:23:34 +09:00
Kijin Sung
180ed429cf
Fix deprecation error in PHP 8.x when path or domain is null in setcookie()
2023-06-16 15:34:48 +09:00
Kijin Sung
4889852622
Use session.lifetime value if set, otherwise use default of 8 hours
2023-05-21 19:29:32 +09:00
Kijin Sung
0484d8db27
Fix #2111 IDN not being accepted in queries
2023-05-06 22:01:11 +09:00
Kijin Sung
32ffc94dee
Move proxy setting to HTTP::_createClient()
2023-05-01 22:26:16 +09:00
Kijin Sung
58ce0defca
Add option to control error and query log consolidation
2023-05-01 02:59:22 +09:00
Kijin Sung
a1bd9cc2bc
Only record the same error or query once
...
PHP 8.2로 올라오면서 동일한 오류가 수백~수천 번 반복되어
디버그 데이터가 너무 많은 메모리를 차지하는 문제가 종종 발생하고 있음.
동일한 위치에서 발생한 동일한 오류나 쿼리는 한 번만 기록하고
count를 증가시키도록 하여, 불필요한 메모리 사용을 줄이고
반복되는 오류나 쿼리를 쉽게 찾을 수 있도록 개선함.
2023-04-30 23:56:54 +09:00
Kijin Sung
cecc20cc8e
Merge branch 'develop' into fix-debug
2023-04-30 23:22:20 +09:00
Kijin Sung
28bc991048
Replace some rarely used DB class properties with __get() magic method
2023-04-30 22:50:07 +09:00
Kijin Sung
749037249c
Add DB->beginTransaction() as an alias to begin()
2023-04-30 22:38:40 +09:00
Kijin Sung
c9d3e9048d
Remove excess whitespace in jQuery.fileUpload integration script
2023-04-30 22:30:26 +09:00
Kijin Sung
907750ff79
Fix #2108 use error callback function if AJAX transmission fails for any reason
2023-04-30 22:29:37 +09:00
Kijin Sung
f6209202bf
Add deprecation notice to exec_xml()
2023-04-30 22:09:52 +09:00
Kijin Sung
a4905ab65a
Fix #2109 update error message for exec_html()
2023-04-30 22:06:25 +09:00
Kijin Sung
703b04ca97
Remove unnecessary whitespace in common JS files
2023-04-30 22:05:43 +09:00
Kijin Sung
5eab0474e5
Fix tests to account for argon2id support
2023-04-24 01:13:47 +09:00
Kijin Sung
ee5404eab6
Enable password hashing with argon2id algorithm on supported systems (PHP 7.3+)
2023-04-24 01:06:54 +09:00
Kijin Sung
a6774937a2
Add methods for async and multiple concurrent HTTP requests
2023-04-23 16:59:56 +09:00