summaryrefslogtreecommitdiff
path: root/tpl/notes/view.php
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2017-01-18 19:12:01 +0100
committerAlex Auvolat <alex@adnab.me>2017-01-18 19:12:01 +0100
commitcb727d392892ba2b6199a918f320dc6423d74d4c (patch)
tree8f451bfa89c1d85c404e2f16be37705c89eb2fb6 /tpl/notes/view.php
parent77048675abf5fad43e8b5371c35e1c86b3be59c2 (diff)
downloadBits-cb727d392892ba2b6199a918f320dc6423d74d4c.tar.gz
Bits-cb727d392892ba2b6199a918f320dc6423d74d4c.zip
Start update to PDO instead of old mysql_ functions
Diffstat (limited to 'tpl/notes/view.php')
-rw-r--r--tpl/notes/view.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tpl/notes/view.php b/tpl/notes/view.php
index 7615fe3..559c39e 100644
--- a/tpl/notes/view.php
+++ b/tpl/notes/view.php
@@ -10,7 +10,7 @@ if ($can_edit) $t[] = '<a href="edit-notes-' . $note['id'] . '">modifier</a>';
$t[] = '<a href="source-notes-' . $note['id'] . '">code source</a>';
if ($can_move) $t[] = '<a href="move-notes-' . $note['id'] . '">déplacer</a>';
if ($can_delete) $t[] = '<a href="delete-notes-' . $note['id'] . '">supprimer</a>';
-echo '<div class="small_right">' . implode(' | ', $t) . '</div>';
+echo '<div class="small_align_right">' . implode(' | ', $t) . '</div>';
echo $note['html'];
require("tpl/notes/inc_relativestree.php");