Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
5a4ad99a
Commit
5a4ad99a
authored
Jul 28, 2007
by
Dries Buytaert
Browse files
- Patch
#162463
by kbahey: fixed notice.
parent
9dc7f86d
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/path/path.module
View file @
5a4ad99a
...
...
@@ -162,7 +162,7 @@ function path_nodeapi(&$node, $op, $arg) {
case
'insert'
:
// Don't try to insert if path is NULL. We may have already set
// the alias ahead of time.
if
(
$node
->
path
)
{
if
(
isset
(
$node
->
path
)
)
{
path_set_alias
(
"node/
$node->nid
"
,
$node
->
path
);
}
break
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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