From 74bf751ca11c5553192fb3e08e7bc0e5f76ca093 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Thu, 13 Aug 2015 01:33:04 +0200 Subject: [PATCH] Fix: Missing dol_fiche_head and end --- htdocs/categories/edit.php | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/htdocs/categories/edit.php b/htdocs/categories/edit.php index a10823e6098..362c2b324a1 100644 --- a/htdocs/categories/edit.php +++ b/htdocs/categories/edit.php @@ -117,17 +117,14 @@ if ($action == 'update' && $user->rights->categorie->creer) * View */ +$form = new Form($db); + llxHeader("","",$langs->trans("Categories")); print_fiche_titre($langs->trans("ModifCat")); $object->fetch($id); -$form = new Form($db); - -print ''; - -print '
'; print "\n"; print '
'; @@ -136,6 +133,8 @@ print ''; print ''; print ''; +dol_fiche_head(''); + print ''; // Ref @@ -165,13 +164,15 @@ if (empty($reshook) && ! empty($extrafields->attribute_label)) } print '
'; -print '
'; + + +dol_fiche_end(); + print '
'; print '
'; -print '
'; llxFooter();