diff --git a/themes/example/example.theme b/themes/example/example.theme
index bea81f153c2..73037482e6c 100644
--- a/themes/example/example.theme
+++ b/themes/example/example.theme
@@ -8,11 +8,11 @@
?>
-
+
@@ -20,7 +20,7 @@
Logo?
- |
+
@@ -43,7 +43,7 @@
- subject); ?>
+ title); ?>
|
@@ -58,7 +58,7 @@
section) ."\">$story->section";
+ echo "section) ."\">". check_output($story->section) ."";
?>
@@ -68,12 +68,10 @@
|
". check_output($story->abstract, 1) ."";
- if ($story->updates)
- echo " ". t("Editor's note by editor\">$story->editor") .":". check_output($story->updates, 1) ." ";
if ($reply)
- echo "". check_output($story->article, 1) ." ";
+ echo "". check_output($story->article, 1) ." ";
?>
|
@@ -118,7 +116,7 @@
echo " ";
echo " ";
echo " ";
-
+
// Subject:
echo " ";
echo " ";
@@ -127,13 +125,13 @@
echo " | ";
echo " ". check_output($comment->subject);
echo " | ";
-
+
// Moderation:
echo " ";
echo comment_moderation($comment);
echo " | ";
echo " ";
-
+
// Author:
echo " ";
echo " ". t("Author") .": | ". format_username($comment->userid);
@@ -142,14 +140,14 @@
echo " on ". format_date($comment->timestamp);
echo " | ";
echo " ";
-
+
echo " ";
echo " | ";
echo " ";
-
+
// Print body of comment:
if ($comment) echo " " . check_output($comment->comment, 1) ." | ";
-
+
// Print bottom link(s):
echo " $link | ";
echo " ";
@@ -160,7 +158,7 @@
echo " |
";
echo "
";
echo "
@@ -102,7 +102,7 @@
 |
- subject); ?> |
+ title); ?> |
 |
@@ -118,7 +118,7 @@
 |
format_username($story->userid), "%b" => format_date($story->timestamp, "large"))); ?> |
- section) ."\">$story->section"; ?> |
+ section) ."\">". check_output($story->section) .""; ?> |
 |
@@ -126,8 +126,6 @@
abstract, 1) ."
";
- if ($story->updates)
- echo t("Editor's note by editor\">$story->editor") .":". check_output($story->updates, 1) ."
";
if ($reply)
echo check_output($story->article, 1);
?>
diff --git a/themes/jeroen/jeroen.theme b/themes/jeroen/jeroen.theme
index 39a0e8776b9..db665f8102d 100644
--- a/themes/jeroen/jeroen.theme
+++ b/themes/jeroen/jeroen.theme
@@ -85,7 +85,7 @@
|
" nowrap> |
- subject) .""; ?>
+ title) .""; ?>
|
" nowrap> |
@@ -116,7 +116,7 @@
- section) ."\">$story->section";
+ section) ."\">". check_output($story->section) ."";
?>
@@ -128,8 +128,6 @@
". check_output($story->abstract, 1) ." ";
- if ($story->updates)
- echo "". t("Editor's note by editor\">$story->editor") .":". check_output($story->updates, 1) ." ";
if ($reply)
echo " ". check_output($story->article, 1) ." ";
diff --git a/themes/unconed/unconed.theme b/themes/unconed/unconed.theme
index 7bbcc5367e9..3b3f61a79d2 100644
--- a/themes/unconed/unconed.theme
+++ b/themes/unconed/unconed.theme
@@ -1,14 +1,14 @@
brcolor1; ?>" WIDTH="100%">
|
- subject, 1) .""; ?> |  |
|
+ title) .""; ?> |  |
|
section) { print "bgcolor2\">"; }
@@ -94,7 +94,7 @@
if ($story->userid) { print "Posted by " . format_username($story->userid) . " on $timestamp"; }
else { print "Posted by $anonymous on $timestamp"; }
- if ($story->section) { print " | bgcolor2\" ALIGN=\"center\">section) . "\">sectioncolor\">$story->section"; }
+ if ($story->section) { print " | bgcolor2\" ALIGN=\"center\">section) . "\">sectioncolor\">". check_output($story->section) .""; }
?>
|
@@ -102,8 +102,6 @@
". check_output($story->abstract, 1) ."";
- if ($story->updates)
- echo " fgcolor3\">Editor's note by " . format_username($editor) . ": ". check_output($story->updates, 1) ." ";
if ($reply)
if ($story->article) print "". check_output($story->article, 1) ." \n";
?>
| |