Remove extra argument for the creation procedure of some modules (node and wikitext) as this is useless.

This commit is contained in:
2017-01-27 17:02:28 +01:00
parent 7c398a9f33
commit 456770ca3e
3 changed files with 4 additions and 12 deletions

View File

@@ -32,21 +32,17 @@ create
feature {NONE} -- Initialization
make (a_setup: CMS_SETUP)
make
-- Create Current module, disabled by default.
do
version := "1.0"
description := "Service to manage content based on 'node'"
package := "core"
config := a_setup
-- Optional dependencies, mainly for information.
put_dependency ({CMS_RECENT_CHANGES_MODULE}, False)
put_dependency ({CMS_TAXONOMY_MODULE}, False)
end
config: CMS_SETUP
-- Node configuration.
feature -- Access
name: STRING = "node"