Проблема такая.. пишу компонент на Joomla 1.5 по сути переписываю Hello World в форме есть Код:$editor = &JFactory::getEditor();....echo $editor->display( 'text', $this->houseprojects->text , '100%', '550', '75', '20' ) ;при сохранении функциейКод:function store(){ $row =& $this->getTable(); $data = JRequest::get( 'post' ); // Bind the form fields to the houseprojects table if (!$row->bind($data)) { $this->setError($this->_db->getErrorMsg()); return false; } // Make sure the houseprojects record is valid if (!$row->check()) { $this->setError($this->_db->getErrorMsg()); return false; } // Store the web link table to the database if (!$row->store()) { $this->setError($this->_db->getErrorMsg()); return false; }}в поле text сохраняется только чистый текст.. почищенный от всех тэгов... соответственно ни картинок ни разметкив чем может быть проблема?Код:$data = JRequest::get( 'post' );get('post') уже возвращает без теговв табличке поле text имеет тип TEXT
|