diff options
author | Guillaume Mazoyer <respawneral@gmail.com> | 2014-12-10 15:30:58 +0100 |
---|---|---|
committer | Guillaume Mazoyer <respawneral@gmail.com> | 2014-12-10 15:30:58 +0100 |
commit | f34b544949676fd75ec44ba0b5dc6f955cc50057 (patch) | |
tree | ec66890086d8e9e1c81450724604c8c043207513 /index.php | |
parent | 1fa34085a6f33d150c0502cf7555e123ae3bf344 (diff) |
Release 1.0.0.looking-glass-1.0.0
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -23,12 +23,14 @@ require_once('includes/config.defaults.php'); require_once('config.php'); final class LookingGlass { + private $release; private $frontpage; private $contact; private $misc; private $routers; function __construct($config) { + $this->release = $config['release']; $this->frontpage = $config['frontpage']; $this->contact = $config['contact']; $this->misc = $config['misc']; @@ -179,7 +181,7 @@ final class LookingGlass { } print('<br /><br />'); - print('<span class="origin">Powered by <a href="https://github.com/respawner/looking-glass" title="Looking Glass Project">Looking Glass</a></span>'); + print('<span class="origin">Powered by <a href="https://github.com/respawner/looking-glass" title="Looking Glass Project">Looking Glass '.$this->release['version'].'</a></span>'); print('</p>'); print('</div>'); } |