summaryrefslogtreecommitdiff
path: root/tpl/general
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2018-04-29 12:08:02 +0200
committerAlex Auvolat <alex@adnab.me>2018-04-29 12:08:02 +0200
commit03685416017163d38f4ef1239ca50df1e38a242a (patch)
treee6801bff28301e17ebb27812bc68c5cd6631d158 /tpl/general
parentc69c046ff936c1853fb5bf10a5203ec30609d248 (diff)
downloadBits-03685416017163d38f4ef1239ca50df1e38a242a.tar.gz
Bits-03685416017163d38f4ef1239ca50df1e38a242a.zip
Add some links with ?p=update
Diffstat (limited to 'tpl/general')
-rw-r--r--tpl/general/top.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tpl/general/top.php b/tpl/general/top.php
index f9ef6d8..792323e 100644
--- a/tpl/general/top.php
+++ b/tpl/general/top.php
@@ -23,7 +23,7 @@ global $user, $apps; //These might be hidden because this page is called from sq
<div class="right">
<?php
if ($user['id'] == 0) {
- echo '<a href="new-account">Inscription</a><a href="?login">Connexion</a>';
+ echo '<a href="?p=new-account">Inscription</a><a href="?login">Connexion</a>';
} else {
echo '<a href="?logout">Déconnexion (' . $user['name'] . ')</a>';
}
@@ -34,7 +34,7 @@ if ($user['id'] == 0) {
<?php
if ($user['id'] != 0) {
echo '<a href="/~katchup/blog">Blog</a>';
- echo '<a href="user-notes-' . $user['id'] . '">bloc-notes</a>';
+ echo '<a href="?p=user-notes-' . $user['id'] . '">bloc-notes</a>';
echo '<a href="file">fichiers</a>';
}
?>