Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
strongarm
Commits
7e56927d
Commit
7e56927d
authored
Sep 29, 2009
by
young hahn
Browse files
by Ian Ward: Weighting strongarm exceptionally low.
parent
05b48763
Changes
1
Hide whitespace changes
Inline
Side-by-side
strongarm.install
0 → 100644
View file @
7e56927d
<?php
// $Id$
/**
* Implementation of hook_enable().
*/
function
strongarm_enable
()
{
// Weight strongarm exceptionally light.
db_query
(
"UPDATE
{
system
}
SET weight = -1000 WHERE name = 'strongarm' AND type = 'module'"
);
}
/**
* Update 6100: Weight strongarm exceptionally light.
*/
function
strongarm_update_6100
()
{
$ret
=
array
();
$ret
[]
=
update_sql
(
"UPDATE
{
system
}
SET weight = -1000 WHERE name = 'strongarm' AND type = 'module'"
);
return
$ret
;
}
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