phpbb\convert\convertor::meta_refresh PHP Method

meta_refresh() public method

Own meta refresh function to be able to change the global time used
public meta_refresh ( $url )
    function meta_refresh($url)
    {
        global $convert;
        if ($convert->options['refresh']) {
            // Because we should not rely on correct settings, we simply use the relative path here directly.
            $this->template->assign_vars(array('S_REFRESH' => true, 'META' => '<meta http-equiv="refresh" content="5; url=' . $url . '" />'));
        }
    }