added unique but sortable time
All checks were successful
Build and push / Pulling repo on server (push) Successful in 19s

This commit is contained in:
2023-10-21 22:12:56 +02:00
parent b095073447
commit fc9de5b15c
3 changed files with 50 additions and 17 deletions

View File

@ -104,7 +104,8 @@ class Page
//render template by running include
ob_start();
extract($this->variables);
if(is_array($this->variables))
extract($this->variables);
if($templatefile!= '')
include($templatefile);
$pagecontent = ob_get_contents();