Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch 'release/2017-11-12'
  • Loading branch information
bpd01001 committed Sep 12, 2017
2 parents 154f8a5 + c6f03f2 commit 7e812f3
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions www/config.php
Expand Up @@ -13,20 +13,20 @@
* Site Navigation
*/
$navigation = array(
'Home' => '/www/index.php',
'About' => '/www/about.php',
'Contact' => '/www/contact.php'
'Home' => 'index.php',
'About' => 'about.php',
'Contact' => 'contact.php'
);

/**
* Store the URI for the current page (as requested by the user)
*
* This should set $current to one of the following
* - /www/index.php'
* - /www/about.php'
* - /www/contact.php
* - index.php'
* - about.php'
* - contact.php
*/
$current = $_SERVER['REQUEST_URI'];
$current = basename($_SERVER['REQUEST_URI']);


/**
Expand Down

0 comments on commit 7e812f3

Please sign in to comment.