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
b5748332
Commit
b5748332
authored
May 27, 2001
by
Steven Wittens
Browse files
Fixed a goofy bug in Goofy :)
parent
356df28e
Changes
1
Hide whitespace changes
Inline
Side-by-side
themes/goofy/goofy.theme
View file @
b5748332
...
...
@@ -100,7 +100,7 @@ function node($node, $main = 0) {
$title = check_output($node->title);
$subleft = strtr(t("Submitted by %a on %b"), array("%a" => format_username($node->userid), "%b" => format_date($node->timestamp, "large")));
$subright = category_name($node->cid) ." / ". topic_name($node->tid);
$body = check_output($node->body, 1) . "<hr color=\"#404040\" size=\"1\"><div align=\"right\">" .
($main?
theme_morelink($this, $node)
:
"");
$body = check_output($node->body, 1) .
($main ?
"<hr color=\"#404040\" size=\"1\"><div align=\"right\">" . theme_morelink($this, $node)
. "</div>" :
"");
print "<script language=\"JavaScript\"><!--\ns(\"". $this->stripbreaks(addslashes($title)) ."\",\"". $this->stripbreaks(addslashes($subleft)) ."\",\"". $this->stripbreaks(addslashes($subright)) ."\",\"". $this->stripbreaks(addslashes($body)) ."\"); // -->\n</script>\n";
} // close node function
...
...
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