forked from Adleraci/adlerka.top
		
	Fix articles
This commit is contained in:
		@@ -15,13 +15,14 @@ if($articles_tmp['Status'] == "Success"){
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
$articleTemplate = file_get_contents($routerConfig["template_dir"] . "newsArticle.html");
 | 
			
		||||
$output = str_replace("__TEMPLATE_FOR_ARTICLE_CONTENT__", $articleTemplate, $output);
 | 
			
		||||
foreach ($articles as $article){
 | 
			
		||||
    $articleTitle = htmlspecialchars($article["Title"]);
 | 
			
		||||
    $articleBody = htmlspecialchars($article["Body"]);
 | 
			
		||||
    $articleFileList = $article["FileList"];
 | 
			
		||||
    $articleWrittenBy = $article["WrittenBy"];
 | 
			
		||||
    $articleWrittenAt = htmlspecialchars($article["WrittenAt"]);
 | 
			
		||||
    $articleWrittenByName = htmlspecialchars($article["Nickname"]);
 | 
			
		||||
    $articleWrittenByName = htmlspecialchars($article["WrittenByName"]);
 | 
			
		||||
 | 
			
		||||
    $articleTemplate = str_replace("__TEMPLATE_ARTICLE_TITLE__", $articleTitle, $articleTemplate);
 | 
			
		||||
    $articleTemplate = str_replace("__TEMPLATE_ARTICLE_AUTHOR__", $articleWrittenByName, $articleTemplate);
 | 
			
		||||
@@ -31,7 +32,6 @@ foreach ($articles as $article){
 | 
			
		||||
    $articles_out .= $articleTemplate;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
$output = str_replace("__TEMPLATE_FOR_ARTICLE_CONTENT__", $articleTemplate, $output);
 | 
			
		||||
$output = str_replace("__TEMPLATE__ARTICLES_HERE__", $articles_out, $output);
 | 
			
		||||
 | 
			
		||||
return [
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user