Documentation is available at documentsection_model_update.php
1 <?php
2 /**
3 * @author Jan H. Andersen <jha@ipwsystems.dk>
4 * @author Martin R. Larsen <mrl@ipwsystems.dk>
5 * @copyright {@link http://www.ipwsystems.dk/ IPW Systems a.s}
6 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
7 * @package METAjour
8 * @subpackage model
9 * $Id: documentsection_model_update.php,v 1.1 2005/01/03 05:36:21 jan Exp $
10 */
11
12 require_once('basic_model_update.php');
13
14 class documentsection_model_update extends basic_model_update {
15
16 function model() {
17 $this->data['content'] = str_replace('>', '>', $this->data['content']);
18 $this->data['content'] = str_replace('<', '<', $this->data['content']);
19 $this->data['content'] = str_replace('&', '&', $this->data['content']);
20 parent::model();
21 }
22
23 }
24
25 ?>
Documentation generated on Thu, 9 Jun 2005 06:51:49 +0200 by phpDocumentor 1.2.3