From 5eb8baa0965b35e7b2c65096313af18e6cfd87f6 Mon Sep 17 00:00:00 2001 From: Jocelyn Fiat Date: Fri, 15 Feb 2013 15:08:53 +0100 Subject: [PATCH] keep compilable with EiffelStudio <= 7.1 --- draft/application/cms/src/kernel/link/cms_external_link.e | 2 ++ draft/application/cms/src/modules/debug/debug_module.e | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/draft/application/cms/src/kernel/link/cms_external_link.e b/draft/application/cms/src/kernel/link/cms_external_link.e index a73d9638..74e3ccee 100644 --- a/draft/application/cms/src/kernel/link/cms_external_link.e +++ b/draft/application/cms/src/kernel/link/cms_external_link.e @@ -29,6 +29,8 @@ feature -- Status report is_expandable: BOOLEAN = False + has_children: BOOLEAN = False + children: detachable LIST [CMS_LINK] do end diff --git a/draft/application/cms/src/modules/debug/debug_module.e b/draft/application/cms/src/modules/debug/debug_module.e index fa1c2de7..c586e3bf 100644 --- a/draft/application/cms/src/modules/debug/debug_module.e +++ b/draft/application/cms/src/modules/debug/debug_module.e @@ -86,7 +86,7 @@ feature -- Handler s.append ("
") - append_info_to ("Current dir", (create {EXECUTION_ENVIRONMENT}).current_working_path.name, e, s) + append_info_to ("Current dir", (create {EXECUTION_ENVIRONMENT}).current_working_directory, e, s) append_info_to ("Base url", cms.base_url, e, s) append_info_to ("Script url", cms.script_url, e, s) s.append ("
")