Issues (806)

lib/midcom/style/ROOT.php (1 issue)

Labels
Severity
1
<!DOCTYPE html>
2
<html lang="<?php echo midcom::get()->i18n->get_current_language(); ?>">
3
    <head>
4
        <meta charset="UTF-8">
5
        <title><(title)> - <?php echo midcom_core_context::get()->get_key(MIDCOM_CONTEXT_PAGETITLE); ?></title>
0 ignored issues
show
Are you sure midcom_core_context::get...DCOM_CONTEXT_PAGETITLE) of type false|mixed can be used in echo? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

5
        <title><(title)> - <?php echo /** @scrutinizer ignore-type */ midcom_core_context::get()->get_key(MIDCOM_CONTEXT_PAGETITLE); ?></title>
Loading history...
6
        <?php midcom::get()->head->print_head_elements(); ?>
7
    </head>
8
9
    <body<?php midcom::get()->head->print_jsonload(); ?>>
10
    <(content)>
11
        <?php
12
        midcom::get()->uimessages->show();
13
        midcom::get()->toolbars->show();
14
        ?>
15
    </body>
16
</html>
17