Welcome to mirror list, hosted at ThFree Co, Russian Federation.

page-advisory.php - github.com/nextcloud/nextcloud.com.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a48d5ba41f550e30db9e5abb4559510d754a9083 (plain)
1
2
3
4
5
6
7
<?php
$identifier = strtolower(str_replace('.', '', $_GET['id']));
if(file_exists(__DIR__.'/advisories/'.$identifier.'.php')) {
	include(__DIR__.'/advisories/'.$identifier.'.php');
} else {
	get_template_part('404');
}