Update of /cvsroot/phpwebsite-comm/modules/article/inc
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv16409/inc
Modified Files:
A_update.php
Log Message:
AM uses breakpost now
Index: A_update.php
===================================================================
RCS file: /cvsroot/phpwebsite-comm/modules/article/inc/A_update.php,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** A_update.php 21 Nov 2008 06:13:14 -0000 1.11
--- A_update.php 25 Jan 2009 16:27:08 -0000 1.12
***************
*** 18,22 ****
/* Update title and summary data */
! $this->title = strip_tags($_POST['ARTICLE_title']);
$this->summary = PHPWS_Text::parseInput($_POST['ARTICLE_summary']);
--- 18,24 ----
/* Update title and summary data */
! $this->title = strip_tags($_POST['ARTICLE_title']);
! if (PHPWS_Text::breakPost('ARTICLE_summary'))
! $_POST['ARTICLE_summary'] = PHPWS_Text::breaker($_POST['ARTICLE_summary']);
$this->summary = PHPWS_Text::parseInput($_POST['ARTICLE_summary']);
|