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
d8d2d69b
Commit
d8d2d69b
authored
Dec 08, 2003
by
Kjartan Mannes
Browse files
- Fixed missing pager_display -> theme('pager').
parent
712a30b5
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/node.module
View file @
d8d2d69b
...
...
@@ -1530,7 +1530,7 @@ function node_page() {
while
(
$node
=
db_fetch_object
(
$result
))
{
$output
.
=
node_view
(
node_load
(
array
(
"nid"
=>
$node
->
nid
,
"type"
=>
$node
->
type
)),
1
);
}
$output
.
=
pager_display
(
NULL
,
variable_get
(
"default_nodes_main"
,
10
));
$output
.
=
theme
(
'pager'
,
NULL
,
variable_get
(
"default_nodes_main"
,
10
));
print
theme
(
"page"
,
$output
,
""
);
}
}
...
...
modules/node/node.module
View file @
d8d2d69b
...
...
@@ -1530,7 +1530,7 @@ function node_page() {
while
(
$node
=
db_fetch_object
(
$result
))
{
$output
.
=
node_view
(
node_load
(
array
(
"nid"
=>
$node
->
nid
,
"type"
=>
$node
->
type
)),
1
);
}
$output
.
=
pager_display
(
NULL
,
variable_get
(
"default_nodes_main"
,
10
));
$output
.
=
theme
(
'pager'
,
NULL
,
variable_get
(
"default_nodes_main"
,
10
));
print
theme
(
"page"
,
$output
,
""
);
}
}
...
...
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