From d7d019e071dccee5c84878a20fabf14124b89fe8 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 31 Dec 2021 14:21:20 +0100 Subject: [PATCH] Fix class not found --- htdocs/bookmarks/list.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/bookmarks/list.php b/htdocs/bookmarks/list.php index ef68c697ac1..07ea263eeda 100644 --- a/htdocs/bookmarks/list.php +++ b/htdocs/bookmarks/list.php @@ -86,7 +86,7 @@ if ($action == 'delete') { * View */ -$userstatic = new User($db); +$form = new Form($db); $title = $langs->trans("ListOfBookmarks");