+1.78
Рейтинг
6.63
Сила

x3r0x

  • avatar x3r0x
  • 2
Я сделал следующим образом:

В файле Text.class.php нашел код

// Разрешённые параметры тегов		
		$this->oJevix->cfgAllowTagParams('img', array('src', 'alt' => '#text', 'title', 'align' => array('right', 'left', 'center'), 'width' => '#int', 'height' => '#int', 'hspace' => '#int', 'vspace' => '#int'));
		$this->oJevix->cfgAllowTagParams('a', array('title', 'href', 'rel'));		
		$this->oJevix->cfgAllowTagParams('cut', array('name'));
		$this->oJevix->cfgAllowTagParams('object', array('width' => '#int', 'height' => '#int', 'data' => '#link'));
		$this->oJevix->cfgAllowTagParams('param', array('name' => '#text', 'value' => '#text'));
		$this->oJevix->cfgAllowTagParams('embed', array('src' => '#image', 'type' => '#text','allowscriptaccess' => '#text', 'allowfullscreen' => '#text','width' => '#int', 'height' => '#int', 'flashvars'=> '#text', 'wmode'=> '#text'));


и ниже добавил строчку:
$this->oJevix->cfgAllowTagParams('video', array('src', 'autoplay' => '#text', 'controls' => '#text', 'height' => '#int', 'loop' => '#text', 'preload'=> '#text', 'width' => '#int', ));


Теперь все работает.