diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2011-12-15 01:06:01 -0800 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2011-12-15 01:06:01 -0800 |
commit | 4d822cf99076242ff11fc362a6c377bc85d10b2a (patch) | |
tree | 7b6fcd3be3fbcc14fc17ad476272b87c0932490f /includes/header.php | |
parent | d763c8be796f804c87b710f20145aeeb5245fb8e (diff) | |
download | pathery-4d822cf99076242ff11fc362a6c377bc85d10b2a.tar.xz |
Missed a couple clean-URL's
Diffstat (limited to 'includes/header.php')
-rw-r--r-- | includes/header.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/includes/header.php b/includes/header.php index 4e50d77..86329a9 100644 --- a/includes/header.php +++ b/includes/header.php @@ -93,12 +93,12 @@ function topbar($links) { echo "<div id='user'>";
if ($_SESSION['accepted'] == 1) {
- echo "Logged in as <a href='?page=cp' title='change name'>$_SESSION[displayName]</a><br>";
+ echo "Logged in as <a href='cp' title='change name'>$_SESSION[displayName]</a><br>";
if ($_SESSION['displayName'] == 'noname')
- echo "<a href='?page=cp' title='change name'>Update your name</a> | ";
- echo "<a href='?page=logout'>Logout</a>";
+ echo "<a href='cp' title='change name'>Update your name</a> | ";
+ echo "<a href='logout'>Logout</a>";
} else
- echo "<a href='?page=login'>Sign in with Google</a>";
+ echo "<a href='login'>Sign in with Google</a>";
echo "</div>";
echo "</div>";
|