Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
$charset = $vbulletin->userinfo['lang_charset'];
$charset = strtolower($charset) == 'iso-8859-1' ? 'windows-1252' : $charset;
@header('Content-Type: text/html; charset=' . $charset);
<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml version="1.0" encoding="windows-1251"?>
<?xml version="1.0" encoding="'.$this->vbulletin->userinfo['lang_charset'].'"?>
if ($this->is_banned())
{
$shout = array(
's_notice' => 1,
's_shout' => 'You are currently banned from the shoutbox.',
'musername' => 'Notice',
);
$shoutobj->parse($shout['s_shout']);
eval('$build = "' . fetch_template($template) . '";');
return $build;
}
if ($this->vbulletin->options['ishout_notice'] != '' && !$archive)
{
$shout = array(
's_notice' => 1,
's_shout' => $this->vbulletin->options['ishout_notice'],
'musername' => 'Notice',
)
if ($this->is_banned())
{
$shout = array(
's_notice' => 1,
's_shout' => 'Вы не можете участвовать в чате. Администрация забанила вас.',
'musername' => 'Уведомление',
);
$shoutobj->parse($shout['s_shout']);
eval('$build = "' . fetch_template($template) . '";');
return $build;
}
if ($this->vbulletin->options['ishout_notice'] != '' && !$archive)
{
$shout = array(
's_notice' => 1,
's_shout' => $this->vbulletin->options['ishout_notice'],
'musername' => 'Уведомление',
);
if ($this->vbulletin->options['ishout_logging'])
{
$this->load_engine('log');
$log = new log;
$log->log_action(
trim($message) != '' ? "Notice has been changed<box>Old: " . (($this->vbulletin->options['ishout_notice']) ? $this->vbulletin->options['ishout_notice'] : 'No previous notice was present') . "</box><box>New: {$message}</box>" : 'Notice was removed',
'notice'
);
}
if ($this->vbulletin->options['ishout_logging'])
{
$this->load_engine('log');
$log = new log;
$log->log_action(
trim($message) != '' ? "Уведомление было изменено. <box>Старое: " . (($this->vbulletin->options['ishout_notice']) ? $this->vbulletin->options['ishout_notice'] : 'отсутсвовало') . "</box><box>Новое: {$message}</box>" : 'очищено',
'notice'
);
}
Движок один, а вот системный язык разный. Можно.А подскажите мне вот не грамотному пожалуйста, булка в юникоде и cp1250 это два разных движка или можно как то переключаться между этими кодировками?