From 9f4ec3dbdf34792d2e2c13f29f9c4b69d12029bb Mon Sep 17 00:00:00 2001 From: phf Date: Mon, 31 Aug 2015 12:00:47 +0200 Subject: [PATCH] FIX error creating default object from empty value --- htdocs/core/class/conf.class.php | 1 + 1 file changed, 1 insertion(+) diff --git a/htdocs/core/class/conf.class.php b/htdocs/core/class/conf.class.php index 29fed41a6ad..97fc168716d 100644 --- a/htdocs/core/class/conf.class.php +++ b/htdocs/core/class/conf.class.php @@ -110,6 +110,7 @@ class Conf $this->bank = new stdClass(); $this->notification = new stdClass(); $this->mailing = new stdClass(); + $this->expensereport = new stdClass(); }