Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
project
drupal
Commits
e0fe1ae8
Commit
e0fe1ae8
authored
Jul 04, 2007
by
Dries
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Patch
#151583
by pwolanin, Shakur, webernet, Arancaytar et al: various menu module fixes.
parent
8cd661b8
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
496 additions
and
307 deletions
+496
-307
includes/menu.inc
includes/menu.inc
+172
-70
modules/menu/menu.module
modules/menu/menu.module
+321
-236
modules/system/system.install
modules/system/system.install
+1
-0
modules/system/system.schema
modules/system/system.schema
+1
-0
profiles/default/default.profile
profiles/default/default.profile
+1
-1
No files found.
includes/menu.inc
View file @
e0fe1ae8
This diff is collapsed.
Click to expand it.
modules/menu/menu.module
View file @
e0fe1ae8
This diff is collapsed.
Click to expand it.
modules/system/system.install
View file @
e0fe1ae8
...
...
@@ -3339,6 +3339,7 @@ function system_update_6020() {
'expanded'
=>
array
(
'type'
=>
'int'
,
'not null'
=>
TRUE
,
'default'
=>
0
,
'size'
=>
'small'
),
'weight'
=>
array
(
'type'
=>
'int'
,
'not null'
=>
TRUE
,
'default'
=>
0
),
'depth'
=>
array
(
'type'
=>
'int'
,
'not null'
=>
TRUE
,
'default'
=>
0
,
'size'
=>
'small'
),
'customized'
=>
array
(
'type'
=>
'int'
,
'not null'
=>
TRUE
,
'default'
=>
0
,
'size'
=>
'small'
),
'p1'
=>
array
(
'type'
=>
'int'
,
'unsigned'
=>
TRUE
,
'not null'
=>
TRUE
,
'default'
=>
0
),
'p2'
=>
array
(
'type'
=>
'int'
,
'unsigned'
=>
TRUE
,
'not null'
=>
TRUE
,
'default'
=>
0
),
'p3'
=>
array
(
'type'
=>
'int'
,
'unsigned'
=>
TRUE
,
'not null'
=>
TRUE
,
'default'
=>
0
),
...
...
modules/system/system.schema
View file @
e0fe1ae8
...
...
@@ -110,6 +110,7 @@ function system_schema() {
'expanded'
=>
array
(
'type'
=>
'int'
,
'not null'
=>
TRUE
,
'default'
=>
0
,
'size'
=>
'small'
),
'weight'
=>
array
(
'type'
=>
'int'
,
'not null'
=>
TRUE
,
'default'
=>
0
),
'depth'
=>
array
(
'type'
=>
'int'
,
'not null'
=>
TRUE
,
'default'
=>
0
,
'size'
=>
'small'
),
'customized'
=>
array
(
'type'
=>
'int'
,
'not null'
=>
TRUE
,
'default'
=>
0
,
'size'
=>
'small'
),
'p1'
=>
array
(
'type'
=>
'int'
,
'unsigned'
=>
TRUE
,
'not null'
=>
TRUE
,
'default'
=>
0
),
'p2'
=>
array
(
'type'
=>
'int'
,
'unsigned'
=>
TRUE
,
'not null'
=>
TRUE
,
'default'
=>
0
),
'p3'
=>
array
(
'type'
=>
'int'
,
'unsigned'
=>
TRUE
,
'not null'
=>
TRUE
,
'default'
=>
0
),
...
...
profiles/default/default.profile
View file @
e0fe1ae8
...
...
@@ -8,7 +8,7 @@
* An array of modules to be enabled.
*/
function
default_profile_modules
()
{
return
array
(
'color'
,
'comment'
,
'help'
,
'taxonomy'
,
'dblog'
);
return
array
(
'color'
,
'comment'
,
'help'
,
'menu'
,
'taxonomy'
,
'dblog'
);
}
/**
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment