Thomas Bruederli
2014-05-07 184ed2efe2258579c886de337446fcbb05f5faf4
Declare content language for proper text-to-speech support
1 files modified
9 ■■■■■ changed files
program/include/rcmail_output_html.php 9 ●●●●● patch | view | raw | blame | history
program/include/rcmail_output_html.php
@@ -1332,6 +1332,15 @@
            $this->pagetitle = 'Roundcube Mail';
        }
        // declare page language
        if (!empty($_SESSION['language'])) {
            $lang = substr($_SESSION['language'], 0, 2);
            $output = preg_replace('/<html/', '<html lang="' . html::quote($lang) . '"', $output, 1);
            if (!headers_sent()) {
                header('Content-Language: ' . $lang);
            }
        }
        // replace specialchars in content
        $page_title  = html::quote($this->pagetitle);
        $page_header = '';