From 36bb57555c1be31a19db442db35befba3188633a Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Thu, 13 Nov 2003 19:52:54 +0000 Subject: - table(...) -> theme("table", ...) --- modules/book.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/book.module') diff --git a/modules/book.module b/modules/book.module index 5b94c60fe..0a6f68a44 100644 --- a/modules/book.module +++ b/modules/book.module @@ -741,7 +741,7 @@ function book_admin_view($nid, $depth = 0) { $rows[] = book_admin_view_line($node); $rows = array_merge($rows, book_admin_view_book($nid)); - $output .= table($header, $rows); + $output .= theme("table", $header, $rows); $output .= form_submit(t("Save book pages")); return form($output); @@ -797,7 +797,7 @@ function book_admin_orphan() { $rows = array_merge($rows, book_admin_view_book($node->nid, $depth + 1)); } } - $output .= table($header, $rows); + $output .= theme("table", $header, $rows); } return $output; -- cgit v1.2.3