Bugfix
This commit is contained in:
parent
e7e0da599e
commit
3bc5b6418b
|
@ -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'){
|
||||||
|
|
Loading…
Reference in New Issue