From fa25c7a0ca13b57f098f0d2a2f7379ce73086723 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Thu, 19 Aug 2004 15:41:57 +0000 Subject: - Code improvements by Stefan: use capital letters for header titles (and added some missing t() functions). --- 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 a962f7ee7..4dcdf18fb 100644 --- a/modules/book.module +++ b/modules/book.module @@ -685,7 +685,7 @@ function book_admin_view($nid, $depth = 0) { $output .= '

'. $node->title .'

'; - $header = array(t('title'), t('weight'), array('data' => t('operations'), 'colspan' => 3)); + $header = array(t('Title'), t('Weight'), array('data' => t('Operations'), 'colspan' => 3)); $rows[] = book_admin_view_line($node); $rows = array_merge($rows, book_admin_view_book($nid)); @@ -733,7 +733,7 @@ function book_admin_orphan() { if ($pages) { $output .= '

'. t('Orphan pages') .'

'; - $header = array(t('title'), t('weight'), array('data' => t('operations'), 'colspan' => 3)); + $header = array(t('Title'), t('Weight'), array('data' => t('Operations'), 'colspan' => 3)); foreach ($pages as $nid => $node) { if ($node->parent && empty($pages[$node->parent])) { $rows[] = book_admin_view_line($node, $depth); -- cgit v1.2.3