From 614b82fe889a5bcd477475f04d4f819be88bb8e1 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Thu, 28 Nov 2019 14:16:54 +0100 Subject: [PATCH] Fix var not initialized --- htdocs/core/class/html.form.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/core/class/html.form.class.php b/htdocs/core/class/html.form.class.php index d70993be51d..f044d5fac3d 100644 --- a/htdocs/core/class/html.form.class.php +++ b/htdocs/core/class/html.form.class.php @@ -3971,7 +3971,7 @@ class Form if ($type === Categorie::TYPE_BANK_LINE) { // TODO Move this into common category feature - $categids = array(); + $cate_arbo = array(); $sql = "SELECT c.label, c.rowid"; $sql .= " FROM ".MAIN_DB_PREFIX."bank_categ as c"; $sql .= " WHERE entity = ".$conf->entity;