mirror of
https://github.com/LinkStackOrg/LinkStack.git
synced 2024-12-12 02:07:42 +01:00
10 lines
278 B
PHP
10 lines
278 B
PHP
<?php // Runs before updating
|
|
if(trim(file_get_contents(base_path("version.json"))) < '4.0.0'){
|
|
try {
|
|
$file = base_path('storage/RSTAC');
|
|
if (!file_exists($file)) {
|
|
$handleFile = fopen($file, 'w');
|
|
fclose($handleFile);
|
|
}
|
|
} catch (Exception $e) {}
|
|
} |