Fix bug displaying single prosjekt
This commit is contained in:
parent
c1def5fd7d
commit
60ef214e1b
|
@ -47,9 +47,11 @@ $projects = $projectManager->getAll();
|
|||
<ul class="calendar-events">
|
||||
<?php
|
||||
$randProjects = array_rand($projects, min(3, count($projects)));
|
||||
|
||||
for($i = 0; $i < count($randProjects); $i++){
|
||||
$project = $projects[$randProjects[$i]];
|
||||
if (!is_array($randProjects)) {
|
||||
$randProjects = [$randProjects];
|
||||
};
|
||||
foreach($randProjects as $i) {
|
||||
$project = $projects[$i];
|
||||
?>
|
||||
|
||||
<li>
|
||||
|
@ -88,4 +90,4 @@ $projects = $projectManager->getAll();
|
|||
echo '<a class="login" href="' . $as->getLoginURL() . '">logg inn</a>';
|
||||
}
|
||||
?>
|
||||
</nav>
|
||||
</nav>
|
||||
|
|
Loading…
Reference in New Issue