This commit is contained in:
Julian Prieber 2023-02-13 14:47:47 +01:00
parent e7e0da599e
commit 3bc5b6418b
1 changed files with 2 additions and 2 deletions

View File

@ -55,8 +55,8 @@ class InstallerController extends Controller
$file = base_path('INSTALLERLOCK'); $file = base_path('INSTALLERLOCK');
if (!file_exists($file)) { if (!file_exists($file)) {
$handle = fopen($file, 'w') or die('Cannot create file: '.$file); $handleFile = fopen($file, 'w') or die('Cannot create file: '.$file);
fclose($handle); fclose($handleFile);
} }
if(DB::table('users')->count() == '0'){ if(DB::table('users')->count() == '0'){