diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-07-14 13:36:38 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-07-14 13:36:38 +0000 |
commit | e724f18db95e1234d35d1279b31d999f3271899e (patch) | |
tree | 535d61449b8f5dcee3592c5c3547e66fdd4cc595 /includes/theme.inc | |
parent | b99d4d7a424bf52bc7a4e7908e1d0d1cfd0c7b87 (diff) | |
download | brdo-e724f18db95e1234d35d1279b31d999f3271899e.tar.gz brdo-e724f18db95e1234d35d1279b31d999f3271899e.tar.bz2 |
- blog.module:
+ added RSS 0.91(5) feeds to the blog module which makes it possible
to both syndicate an particular user's latest blog entries, or the
latest entries of all users.
Diffstat (limited to 'includes/theme.inc')
-rw-r--r-- | includes/theme.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index 580de21b6..49985c49d 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -5,8 +5,8 @@ class BaseTheme { return implode($delimiter, $links); } - function images($name) { - return $name; + function image($name) { + return "misc/$name"; } } |