diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-11-13 19:52:54 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-11-13 19:52:54 +0000 |
commit | 36bb57555c1be31a19db442db35befba3188633a (patch) | |
tree | 6574d74df4b72cfe71d07f1aff33acb4761756c7 /modules/title.module | |
parent | e8de9721d83489a836f3d74f982f751d358fbc9e (diff) | |
download | brdo-36bb57555c1be31a19db442db35befba3188633a.tar.gz brdo-36bb57555c1be31a19db442db35befba3188633a.tar.bz2 |
- table(...) -> theme("table", ...)
Diffstat (limited to 'modules/title.module')
-rw-r--r-- | modules/title.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/title.module b/modules/title.module index a2fdd0b9d..9650ceeb5 100644 --- a/modules/title.module +++ b/modules/title.module @@ -46,7 +46,7 @@ function title_page() { } $output = "<div id=\"title\">"; - $output .= table($header, $rows); + $output .= theme("table", $header, $rows); $output .= "</div>"; print theme("header"); |