From d7d9c8c3383727cacded0e3097f3d4ff68b1dc3d Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sat, 7 Apr 2018 21:04:08 +0200 Subject: [PATCH] Fix module descriptor of dav module --- htdocs/core/modules/modDav.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/core/modules/modDav.class.php b/htdocs/core/modules/modDav.class.php index f6aeeac64c9..cede86796a0 100644 --- a/htdocs/core/modules/modDav.class.php +++ b/htdocs/core/modules/modDav.class.php @@ -89,8 +89,8 @@ class modDav extends DolibarrModules 'tpl' => 0, // Set this to 1 if module overwrite template dir (core/tpl) 'barcode' => 0, // Set this to 1 if module has its own barcode directory (core/modules/barcode) 'models' => 0, // Set this to 1 if module has its own models directory (core/modules/xxx) - 'css' => array(''), // Set this to relative path of css file if module has its own css file - 'js' => array(''), // Set this to relative path of js file if module must load a js on all pages + 'css' => array(), // Set this to relative path of css file if module has its own css file + 'js' => array(), // Set this to relative path of js file if module must load a js on all pages 'hooks' => array() // Set here all hooks context managed by module. To find available hook context, make a "grep -r '>initHooks(' *" on source code. You can also set hook context 'all' );