2023-05-05 14:43:17 +02:00
|
|
|
<?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) {}
|
2024-06-20 12:24:54 +02:00
|
|
|
}
|
|
|
|
?>
|
|
|
|
{{-- update links table to new structure --}}
|
|
|
|
@include('components.updater.links-table-translation-layer')
|