summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'index.php')
-rw-r--r--index.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/index.php b/index.php
index a681202..767cc71 100644
--- a/index.php
+++ b/index.php
@@ -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>');
}