summaryrefslogtreecommitdiff
path: root/modules/book
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2012-09-01 22:39:18 -0700
committerwebchick <webchick@24967.no-reply.drupal.org>2012-09-01 22:39:18 -0700
commit95988785e1a39ea4d8506aa752699e39932ef8a3 (patch)
tree3cd8b1da2074ffc6f244edac6d90782e8d645bfa /modules/book
parentb85f3a02b050fc4494d56e022c0a809c4dc24248 (diff)
downloadbrdo-95988785e1a39ea4d8506aa752699e39932ef8a3.tar.gz
brdo-95988785e1a39ea4d8506aa752699e39932ef8a3.tar.bz2
Issue #1473198 by kika, roborn: Fixed Empty table pattern for 'Edit [book's] order and titles' admin page.
Diffstat (limited to 'modules/book')
-rw-r--r--modules/book/book.admin.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/book/book.admin.inc b/modules/book/book.admin.inc
index 2f60610c8..62c6e841a 100644
--- a/modules/book/book.admin.inc
+++ b/modules/book/book.admin.inc
@@ -278,5 +278,5 @@ function theme_book_admin_table($variables) {
$rows[] = $row;
}
- return theme('table', array('header' => $header, 'rows' => $rows, 'attributes' => array('id' => 'book-outline')));
+ return theme('table', array('header' => $header, 'rows' => $rows, 'attributes' => array('id' => 'book-outline'), 'empty' => t('No book content available.')));
}