Aleksander Machniak
2015-10-26 bc3518577d2dcf8a1b55146255e314bd2a3d2fe6
Fix some more Q -> rcube::Q
1 files modified
4 ■■■■ changed files
program/steps/addressbook/import.inc 4 ●●●● patch | view | raw | blame | history
program/steps/addressbook/import.inc
@@ -276,7 +276,7 @@
        )) . ($IMPORT_STATS->names ? ':' : '.'));
    if ($IMPORT_STATS->names) {
        $content .= html::p('em', join(', ', array_map('Q', $IMPORT_STATS->names)));
        $content .= html::p('em', join(', ', array_map(array('rcube', 'Q'), $IMPORT_STATS->names)));
    }
    if ($IMPORT_STATS->skipped) {
@@ -285,7 +285,7 @@
                'nr'   => $IMPORT_STATS->skipped,
                'vars' => $vars,
            )) . ':')
            . html::p('em', join(', ', array_map('Q', $IMPORT_STATS->skipped_names)));
            . html::p('em', join(', ', array_map(array('rcube', 'Q'), $IMPORT_STATS->skipped_names)));
    }
    return html::div($attrib, $content);