uncomment page direction setting

This commit is contained in:
Mike Macgirvin 2023-10-06 07:22:25 +11:00
parent d9f1bb27c6
commit e7c52b8269

View file

@ -1728,10 +1728,10 @@ function construct_page() {
$profile = App::$profile;
// There's some experimental support for right-to-left text in the view/php/default.php page template.
// In v1.9 we started providing direction preference in the per language hstrings.php file
// There is a direction preference in the per language strings.php file
// This requires somebody with fluency in RTL languages to make happen
$page['direction'] = 0; // ((App::$rtl) ? 1 : 0);
$page['direction'] = (bool) App::$rtl;
header("Content-type: text/html; charset=utf-8");