pub / rememori

Simple file-based bookmarking and notes application
git clone https://src.jayvii.de/pub/rememori.git
Home | Log | Files | Exports | Refs | README | RSS

commit 5f8ab18343bf0456004791f96cdac65d851baece
parent 000f1cbe93f87f5864cd6783070dccc388abdefc
Author: JayVii <jayvii[AT]posteo[DOT]de>
Date:   Thu, 24 Oct 2024 21:48:48 +0200

fix: end function properly

Diffstat:
Mlib/edit.php | 7++++++-
1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/lib/edit.php b/lib/edit.php @@ -21,6 +21,11 @@ function edit_note( <textarea id="note" name="note"><?php echo $content; ?></textarea> <label for="category"><?php echo $GLOBALS["i18n_category"]; ?></label> <input id="category" name="category" value="<?php echo $category"; ?>"> - <label for="visibility"><?php echo $GLOBALS["i18n_visibility"]; ?></label> <input type="submit" value="<?php echo $GLOBALS["i18n_save"]; ?>"> </form> + +<?php + +} // function + +?>