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
79f08aca
Commit
79f08aca
authored
Aug 07, 2005
by
Dries
Browse files
- Patch
#26637
by Robert Douglas: $teaser misnamed in themes theme_node().
TODO: update documentation!
parent
ed56c57e
Changes
5
Hide whitespace changes
Inline
Side-by-side
modules/blogapi.module
View file @
79f08aca
...
...
@@ -514,7 +514,7 @@ function blogapi_validate_user($username, $password) {
global
$user
;
$user
=
user_authenticate
(
$username
,
$password
);
if
(
$user
->
uid
)
{
if
(
user_access
(
'edit own blog'
,
$user
))
{
return
$user
;
...
...
modules/blogapi/blogapi.module
View file @
79f08aca
...
...
@@ -514,7 +514,7 @@ function blogapi_validate_user($username, $password) {
global
$user
;
$user
=
user_authenticate
(
$username
,
$password
);
if
(
$user
->
uid
)
{
if
(
user_access
(
'edit own blog'
,
$user
))
{
return
$user
;
...
...
modules/node.module
View file @
79f08aca
...
...
@@ -464,7 +464,7 @@ function node_save($node) {
* @param $node
* A node array or node object.
* @param $teaser
* Whether to display
only
the teaser
for the nod
e.
* Whether to display the teaser
only, as on the main pag
e.
* @param $page
* Whether the node is being displayed by itself as a page.
* @param $links
...
...
modules/node/node.module
View file @
79f08aca
...
...
@@ -464,7 +464,7 @@ function node_save($node) {
* @param $node
* A node array or node object.
* @param $teaser
* Whether to display
only
the teaser
for the nod
e.
* Whether to display the teaser
only, as on the main pag
e.
* @param $page
* Whether the node is being displayed by itself as a page.
* @param $links
...
...
themes/chameleon/chameleon.theme
View file @
79f08aca
...
...
@@ -107,17 +107,17 @@ function chameleon_page($content) {
return $output;
}
function chameleon_node($node, $
main
= 0, $page = 0) {
function chameleon_node($node, $
teaser
= 0, $page = 0) {
$output = "<div class=\"node\">\n";
if (!$page) {
$output .= " <h2 class=\"title\">". ($
main
? l($node->title, "node/$node->nid") : check_plain($node->title)) ."</h2>\n";
$output .= " <h2 class=\"title\">". ($
teaser
? l($node->title, "node/$node->nid") : check_plain($node->title)) ."</h2>\n";
}
$output .= " <div class=\"content\">\n";
if ($
main
&& $node->teaser) {
if ($
teaser
&& $node->teaser) {
$output .= $node->teaser;
}
else {
...
...
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