Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
drupal.org
link
Commits
8eea62f4
Commit
8eea62f4
authored
Sep 06, 2008
by
Nathan Haug
Browse files
#299944. Fatal error during installation. Missing content_notify().
parent
91fd8f60
Changes
1
Hide whitespace changes
Inline
Side-by-side
link.install
View file @
8eea62f4
...
...
@@ -5,6 +5,7 @@
* Implementation of hook_install().
*/
function
link_install
()
{
drupal_load
(
'module'
,
'content'
);
content_notify
(
'install'
,
'link'
);
}
...
...
@@ -12,6 +13,7 @@ function link_install() {
* Implementation of hook_uninstall().
*/
function
link_uninstall
()
{
drupal_load
(
'module'
,
'content'
);
content_notify
(
'uninstall'
,
'link'
);
}
...
...
@@ -19,6 +21,7 @@ function link_uninstall() {
* Implementation of hook_enable().
*/
function
link_enable
()
{
drupal_load
(
'module'
,
'content'
);
content_notify
(
'enable'
,
'link'
);
}
...
...
@@ -26,6 +29,7 @@ function link_enable() {
* Implementation of hook_disable().
*/
function
link_disable
()
{
drupal_load
(
'module'
,
'content'
);
content_notify
(
'disable'
,
'link'
);
}
...
...
Write
Preview
Supports
Markdown
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