summaryrefslogtreecommitdiff
path: root/themes/example/example.theme
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-04-15 17:01:32 +0000
committerDries Buytaert <dries@buytaert.net>2001-04-15 17:01:32 +0000
commit1f0565806b1809b4c0c0a157f7fbfb4ac611e16a (patch)
tree85448501218986cca7db81f7ee5f0d3e9f3b7f5d /themes/example/example.theme
parentf1716fbd9c4fee630fc091d8d9dc87cd105d77da (diff)
downloadbrdo-1f0565806b1809b4c0c0a157f7fbfb4ac611e16a.tar.gz
brdo-1f0565806b1809b4c0c0a157f7fbfb4ac611e16a.tar.bz2
- improved submit.php:
it now uses the new category code, incl content bindings. You can setup different "categories" which map on a content type. Example: review -> review.module article -> story.module column -> story.module announc. -> story.module addons -> file.module themes -> file.module - "generalised" story.module and book.module's output. - fixed bug in includes/timer.inc - fixed glitch in theme example.theme: it said "$how by" but the variable $how has never been declared. - added "drupal development settings" to display some timings - more work on the categories/topics -> does NOT work yet
Diffstat (limited to 'themes/example/example.theme')
-rw-r--r--themes/example/example.theme4
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/example/example.theme b/themes/example/example.theme
index a1984fb4f..dbdad530d 100644
--- a/themes/example/example.theme
+++ b/themes/example/example.theme
@@ -61,7 +61,7 @@
<?php
- echo strtr(t("$how by %a on %b"), array("%a" => format_username($story->userid), "%b" => format_date($story->timestamp, "large")));
+ echo strtr(t("by %a on %b"), array("%a" => format_username($story->userid), "%b" => format_date($story->timestamp, "small")));
?>
</TD>
@@ -192,7 +192,7 @@
<TR>
<TD ALIGN="center" COLSPAN="3">
<P><?php print theme_link(" | "); ?></P>
- <P><SMALL><?php print variable_get(theme_footer, ""); ?></SMALL></P>
+ <P><SMALL><?php print variable_get(site_footer, ""); ?></SMALL></P>
</TD>
</TR>
</TABLE>