From 41269288045683b45a1e2315d54c9039a56c1e6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Doursenaud?= Date: Thu, 8 Sep 2016 16:17:09 +0200 Subject: [PATCH] Fixed code discrepancy Most places and samples used editor_url so I opted for that. --- htdocs/core/modules/DolibarrModules.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/core/modules/DolibarrModules.class.php b/htdocs/core/modules/DolibarrModules.class.php index d682aa2db97..f568dcf6123 100644 --- a/htdocs/core/modules/DolibarrModules.class.php +++ b/htdocs/core/modules/DolibarrModules.class.php @@ -52,7 +52,7 @@ class DolibarrModules // Can not be abstract, because we need to insta /** * @var string URL of module at publisher site */ - public $editor_web; + public $editor_url; /** * @var string Family @@ -538,7 +538,7 @@ class DolibarrModules // Can not be abstract, because we need to insta { if ($this->version == 'dolibarr' || $this->version == 'dolibarr_deprecated') return 'core'; if (! empty($this->version) && ! in_array($this->version,array('experimental','development'))) return 'external'; - if (! empty($this->editor_name) || ! empty($this->editor_web)) return 'external'; + if (! empty($this->editor_name) || ! empty($this->editor_url)) return 'external'; if ($this->numero >= 100000) return 'external'; return 'unknown'; }