diff options
author | Romain d'Alverny <rda@mageia.org> | 2013-03-30 16:50:02 +0000 |
---|---|---|
committer | Romain d'Alverny <rda@mageia.org> | 2013-03-30 16:50:02 +0000 |
commit | 82fc8821a315e9b5a535d58b1988c637f181a886 (patch) | |
tree | dcf3af4db2aef2c4a77dd609239f3fb8b9a03805 /html/index.php | |
parent | 1a7ef0b9afe2e21df458fc3b7660057e8369805d (diff) | |
download | nav-82fc8821a315e9b5a535d58b1988c637f181a886.tar nav-82fc8821a315e9b5a535d58b1988c637f181a886.tar.gz nav-82fc8821a315e9b5a535d58b1988c637f181a886.tar.bz2 nav-82fc8821a315e9b5a535d58b1988c637f181a886.tar.xz nav-82fc8821a315e9b5a535d58b1988c637f181a886.zip |
makes navigation local, depends on nav vhost; easier for local dev
Diffstat (limited to 'html/index.php')
-rw-r--r-- | html/index.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/html/index.php b/html/index.php index e93080e..843f9b3 100644 --- a/html/index.php +++ b/html/index.php @@ -41,6 +41,7 @@ $context = isset($_GET['c']) ? trim($_GET['c']) : null; /** wrap the returned HTML in <header id="hmgn" />? */ $wrap = isset($_GET['w']) ? true : false; +require 'conf.php'; include '../lib.php'; header('Access-Control-Allow-Origin: *'); @@ -48,6 +49,6 @@ header('Access-Control-Allow-Methods: GET'); header('Content-Type: text/html;charset=utf-8'); header(sprintf('Expires: %s', gmdate('r', strtotime('+1 day')))); -echo _mgnav_html($wrap, $lang, null, 'www.mageia.org', NCache::build('var/tmp/cache')); +echo _mgnav_html($wrap, $lang, null, $www_host, NCache::build('var/tmp/cache')); apache_note('navMakeTime', number_format(microtime() - $t0, 6));
\ No newline at end of file |