summaryrefslogtreecommitdiff
path: root/tpl/notes/move.php
diff options
context:
space:
mode:
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");