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; ?> >
Comments
Comment #1
good_man commentedAll RTL issues need to be committed ASAP.