summaryrefslogtreecommitdiff
path: root/tpl/notes/move.php
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/notes/move.php
parentc69c046ff936c1853fb5bf10a5203ec30609d248 (diff)
downloadBits-03685416017163d38f4ef1239ca50df1e38a242a.tar.gz
Bits-03685416017163d38f4ef1239ca50df1e38a242a.zip
Add some links with ?p=update
Diffstat (limited to 'tpl/notes/move.php')
-rw-r--r--tpl/notes/move.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tpl/notes/move.php b/tpl/notes/move.php
index 985b89a..69882a1 100644
--- a/tpl/notes/move.php
+++ b/tpl/notes/move.php
@@ -4,12 +4,12 @@ require("tpl/general/top.php");
function f($n) {
global $note;
- return $n['title'] . ' - <a class="tool_link" href="move-notes-' . $note['id'] . '-' . $n['id'] . '">déplacer ici</a>';
+ return $n['title'] . ' - <a class="tool_link" href="?p=move-notes-' . $note['id'] . '-' . $n['id'] . '">déplacer ici</a>';
}
require("tpl/general/inc_tree.php");
tree($notes_tree, @f);
-echo '<a class="tool_link" href="move-notes-'.$note['id'].'-0">déplacer à la racine</a>';
+echo '<a class="tool_link" href="?p=move-notes-'.$note['id'].'-0">déplacer à la racine</a>';
$can_new = false;
require("tpl/notes/inc_relativestree.php");