this is a problem with book-export-html.tpl.php
1. attempting to print book in rtl
2. book came out ltr even with heading stating

       <link type="text/css" rel="stylesheet" href="misc/print-rtl.css" /> 



I seems that for printing to work right as rtl it seemed to have needed in the pre-header the command dir="rtl"

original:

<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language->language; ?>" xml:lang="<?php print $language->language; ?>">

changed:

<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language->language; ?>" xml:lang="<?php print $language->language; ?>"<?php if ($language_rtl): ?> dir="rtl"   <?php endif; ?> >
CommentFileSizeAuthor
#1 883238-2.patch745 bytesgood_man

Comments

good_man’s picture

Version: 6.19 » 6.x-dev
Status: Patch (to be ported) » Needs review
StatusFileSize
new745 bytes

All RTL issues need to be committed ASAP.

Status: Needs review » Closed (outdated)

Automatically closed because Drupal 6 is no longer supported. If the issue verifiably applies to later versions, please reopen with details and update the version.