Skip to content

Commit 8dae4c0

Browse files
committedDec 21, 2024·
Merge branch 'hotfix/3.1.3.2'
2 parents 6abf995 + 6a76769 commit 8dae4c0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎includes/config/include.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
define('TP_VERSION', '3.1.3');
3030
define("UPGRADE_MIN_DATE", "1732981987");
31-
define('TP_VERSION_MINOR', '1');
31+
define('TP_VERSION_MINOR', '2');
3232
define('TP_TOOL_NAME', 'Teampass');
3333
define('TP_ONE_DAY_SECONDS', 86400);
3434
define('TP_ONE_WEEK_SECONDS', 604800);

‎sources/items.queries.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4352,7 +4352,7 @@
43524352
$right = 20;
43534353
} elseif ((20 <= (int) $accessLevel) && ((int) $accessLevel < 30)) {
43544354
$right = 60;
4355-
} elseif ((int) $accessLevel === 30) {
4355+
} elseif ((int) $accessLevel >= 30) {
43564356
$right = 70;
43574357
} else {
43584358
$right = 10;

0 commit comments

Comments
 (0)
Please sign in to comment.