diff --git a/core/config.class.inc.php b/core/config.class.inc.php index e59ba1272..6bc9ffcc9 100644 --- a/core/config.class.inc.php +++ b/core/config.class.inc.php @@ -1200,7 +1200,7 @@ class Config ], 'compatibility.include_deprecated_js_files' => [ 'type' => 'bool', - 'description' => 'Include the deprecated JS files to ease usage of not migrated extensions', + 'description' => 'Include the deprecated JS files (in iTop previous version) to ease usage of not migrated extensions', 'default' => false, 'value' => false, 'source_of_value' => '', @@ -1216,7 +1216,7 @@ class Config ], 'compatibility.include_deprecated_css_files' => [ 'type' => 'bool', - 'description' => 'Include the deprecated CSS files to ease usage of not migrated extensions', + 'description' => 'Include the deprecated CSS files (in iTop previous version) to ease usage of not migrated extensions', 'default' => false, 'value' => false, 'source_of_value' => '', diff --git a/sources/application/WebPage/WebPage.php b/sources/application/WebPage/WebPage.php index 3b26d691d..9d1fb358c 100644 --- a/sources/application/WebPage/WebPage.php +++ b/sources/application/WebPage/WebPage.php @@ -88,7 +88,7 @@ class WebPage implements Page */ protected const COMPATIBILITY_MOVED_LINKED_SCRIPTS_REL_PATH = []; /** - * @var array Script linked to the page through URIs, which were deprecated but can be added back if necessary {@see "compatibility.include_deprecated_js_files" conf. param.} + * @var array Script linked to the page through URIs, which were deprecated (in iTop previous version) but can be added back if necessary {@see "compatibility.include_deprecated_js_files" conf. param.} * @since 3.0.0 */ protected const COMPATIBILITY_DEPRECATED_LINKED_SCRIPTS_REL_PATH = []; @@ -98,7 +98,7 @@ class WebPage implements Page */ protected const COMPATIBILITY_MOVED_LINKED_STYLESHEETS_REL_PATH = []; /** - * @var array Stylesheets linked to the page through URIs, which were deprecated but can be added back if necessary {@see "compatibility.include_deprecated_css_files" conf. param.} + * @var array Stylesheets linked to the page through URIs, which were deprecated (in iTop previous version) but can be added back if necessary {@see "compatibility.include_deprecated_css_files" conf. param.} * @since 3.0.0 */ protected const COMPATIBILITY_DEPRECATED_LINKED_STYLESHEETS_REL_PATH = [];