Skip to content

Commit a11064d

Browse files
committed
fixes
1 parent 2c31001 commit a11064d

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

app/Actions/Diagnostics/Pipes/Checks/BasicPermissionCheck.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,6 @@ private function checkDirectoryPermissionsRecursively(string $path, array &$data
220220
// `fileperms` also returns the higher bits of the inode mode.
221221
// Hence, we must AND it with 07777 to only get what we are
222222
// interested in
223-
224223
// Edit 2026-01-23: Ignore sticky bit in permission checks
225224
$actual_perm &= self::WITHOUT_STICKY_BIT;
226225
$owning_group_id_or_false = filegroup($path);

app/Actions/Diagnostics/Pipes/Checks/DBSupportCheck.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function handle(array &$data, \Closure $next): array
4242
}
4343
if (!$found) {
4444
// @codeCoverageIgnoreStart
45-
$data[] = DiagnosticData::error(config('database.default', 'sqlite') . ' db driver selected and PHP ' . implode(' or ', $db_possibility[config('database.default', 'sqlite')]) . ' extensions not activated', self::class);
45+
$data[] = DiagnosticData::error(config('database.default', 'sqlite') . ' db driver selected and PHP ' . implode(' or ', $db_possibilities[config('database.default', 'sqlite')]) . ' extensions not activated', self::class);
4646
// @codeCoverageIgnoreEnd
4747
}
4848

0 commit comments

Comments
 (0)