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
drupal
Commits
53a53ce6
Commit
53a53ce6
authored
Jun 13, 2002
by
Kjartan
Browse files
- fixing an error when no DA modules were loaded.
- indentation issue in node module.
parent
d880f8f5
Changes
4
Hide whitespace changes
Inline
Side-by-side
modules/node.module
View file @
53a53ce6
...
...
@@ -787,8 +787,8 @@ function node_form($edit, $error = NULL) {
*/
if
(
!
$error
)
{
/* Only validate if we don't already know the errors. */
$edit
=
node_validate
(
$edit
,
$error
);
/* Only validate if we don't already know the errors. */
$edit
=
node_validate
(
$edit
,
$error
);
}
/*
...
...
modules/node/node.module
View file @
53a53ce6
...
...
@@ -787,8 +787,8 @@ function node_form($edit, $error = NULL) {
*/
if
(
!
$error
)
{
/* Only validate if we don't already know the errors. */
$edit
=
node_validate
(
$edit
,
$error
);
/* Only validate if we don't already know the errors. */
$edit
=
node_validate
(
$edit
,
$error
);
}
/*
...
...
modules/user.module
View file @
53a53ce6
...
...
@@ -469,6 +469,7 @@ function user_set_authmaps($account, $authmaps) {
}
function
user_auth_help_links
()
{
$links
=
array
();
foreach
(
module_list
()
as
$module
)
{
if
(
module_hook
(
$module
,
"auth_help"
))
{
$links
[]
=
lm
(
module_invoke
(
$module
,
"info"
,
"name"
),
array
(
"mod"
=>
"user"
,
"op"
=>
"help"
),
$module
);
...
...
modules/user/user.module
View file @
53a53ce6
...
...
@@ -469,6 +469,7 @@ function user_set_authmaps($account, $authmaps) {
}
function
user_auth_help_links
()
{
$links
=
array
();
foreach
(
module_list
()
as
$module
)
{
if
(
module_hook
(
$module
,
"auth_help"
))
{
$links
[]
=
lm
(
module_invoke
(
$module
,
"info"
,
"name"
),
array
(
"mod"
=>
"user"
,
"op"
=>
"help"
),
$module
);
...
...
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