diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-03-28 07:03:47 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-03-28 07:03:47 +0000 |
commit | 3f2b0e0b3f0322dac929bb997a331cb7c021f295 (patch) | |
tree | 01940cabb5f1b50c16822e8585092ab9cee543ce /modules/section.module | |
parent | 6bb49b4bb8d7c73e1cce62e27375559b9837b898 (diff) | |
download | brdo-3f2b0e0b3f0322dac929bb997a331cb7c021f295.tar.gz brdo-3f2b0e0b3f0322dac929bb997a331cb7c021f295.tar.bz2 |
Flushing my backlog (in case Natrak wants to make more changes):
- tidied up some of the code
- fixed a small problems
Diffstat (limited to 'modules/section.module')
-rw-r--r-- | modules/section.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/section.module b/modules/section.module index 052004b00..07054903e 100644 --- a/modules/section.module +++ b/modules/section.module @@ -23,9 +23,9 @@ function section_block() { $content .= "<LI><A HREF=\"?section=". urlencode($_section->name) ."\">$_section->name</A> (". check_output($_section->stories, 0) .")</LI>\n"; } - $block[0]["subject"] = "Sections"; - $block[0]["content"] = $content; - $block[0]["info"] = "Section list"; + $block[0][subject] = "Sections"; + $block[0][content] = $content; + $block[0][info] = "Section list"; return $block; } |