mirror of
https://github.com/LinkStackOrg/LinkStack.git
synced 2025-04-13 18:01:58 +02:00
The block system now works off a basic modularity/expansion principle where users can add their own blocks
13 lines
388 B
PHP
13 lines
388 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) {}
|
|
}
|
|
?>
|
|
{{-- update links table to new structure --}}
|
|
@include('components.updater.links-table-translation-layer')
|