pupupu

simple static CMS for crappy servers
git clone https://git.ce9e.org/pupupu.git

commit
fee2db24dca58d605652ea2c0bcd860f8f342461
parent
4fb3174179d87e74d7377e2233d773934e11451f
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2018-10-14 11:33
fix getYml

Diffstat

M index.php 2 +-

1 files changed, 1 insertions, 1 deletions


diff --git a/index.php b/index.php

@@ -92,7 +92,7 @@ class Pupupu
   92    92     {
   93    93         $key = "yml:$path:$name";
   94    94         if (!in_array($key, $this->cache)) {
   95    -1             $v = Yaml::parse($this->get($path, 'index.yml'));
   -1    95             $v = Yaml::parse($this->get($path, $name));
   96    96             $this->cache[$key] = $v;
   97    97         }
   98    98         return $this->cache[$key];