Index: misc/print-rtl.css =================================================================== RCS file: misc/print-rtl.css diff -N misc/print-rtl.css --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/print-rtl.css 3 Jun 2007 22:02:18 -0000 @@ -0,0 +1,8 @@ +/* $Id$ */ + +body { + direction: rtl; +} +th { + text-align: right; +} Index: misc/print.css =================================================================== RCS file: /cvs/drupal/drupal/misc/print.css,v retrieving revision 1.5 diff -u -p -r1.5 print.css --- misc/print.css 19 Jun 2005 08:50:46 -0000 1.5 +++ misc/print.css 3 Jun 2007 22:02:18 -0000 @@ -5,7 +5,7 @@ body { background-color: #fff; } th { - text-align: left; + text-align: left; /* LTR */ color: #006; border-bottom: 1px solid #ccc; } Index: modules/book/book.module =================================================================== RCS file: /cvs/drupal/drupal/modules/book/book.module,v retrieving revision 1.420 diff -u -p -r1.420 book.module --- modules/book/book.module 14 May 2007 13:43:34 -0000 1.420 +++ modules/book/book.module 3 Jun 2007 22:02:18 -0000 @@ -702,13 +702,17 @@ function book_export_html($nid, $depth) * @ingroup themeable */ function theme_book_export_html($title, $content) { - global $base_url; + global $base_url, $language; $html = "\n"; $html .= ''; $html .= "\n". $title ."\n"; $html .= ''; $html .= ''."\n"; - $html .= "\n"; + $html .= "\n"; $html .= "\n\n". $content ."\n\n\n"; return $html; }