Update of /cvsroot/xoops/xoops2/modules/xoopspoll/class
In directory sc8-pr-cvs1:/tmp/cvs-serv29406/modules/xoopspoll/class
Modified Files:
xoopspoll.php xoopspolllog.php xoopspolloption.php
Log Message:
removed deprecated isCleaned() method
Index: xoopspoll.php
===================================================================
RCS file: /cvsroot/xoops/xoops2/modules/xoopspoll/class/xoopspoll.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** xoopspoll.php 2 Jan 2003 19:47:45 -0000 1.1
--- xoopspoll.php 5 Jan 2003 13:55:48 -0000 1.2
***************
*** 63,70 ****
function store()
{
! if ( !$this->isCleaned() ) {
! if ( !$this->cleanVars() ) {
! return false;
! }
}
foreach ( $this->cleanVars as $k=>$v ) {
--- 63,68 ----
function store()
{
! if ( !$this->cleanVars() ) {
! return false;
}
foreach ( $this->cleanVars as $k=>$v ) {
Index: xoopspolllog.php
===================================================================
RCS file: /cvsroot/xoops/xoops2/modules/xoopspoll/class/xoopspolllog.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** xoopspolllog.php 2 Jan 2003 19:47:45 -0000 1.1
--- xoopspolllog.php 5 Jan 2003 13:55:48 -0000 1.2
***************
*** 57,64 ****
function store()
{
! if ( !$this->isCleaned() ) {
! if ( !$this->cleanVars() ) {
! return false;
! }
}
foreach ( $this->cleanVars as $k=>$v ) {
--- 57,62 ----
function store()
{
! if ( !$this->cleanVars() ) {
! return false;
}
foreach ( $this->cleanVars as $k=>$v ) {
Index: xoopspolloption.php
===================================================================
RCS file: /cvsroot/xoops/xoops2/modules/xoopspoll/class/xoopspolloption.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** xoopspolloption.php 2 Jan 2003 19:47:45 -0000 1.1
--- xoopspolloption.php 5 Jan 2003 13:55:48 -0000 1.2
***************
*** 56,63 ****
function store()
{
! if ( !$this->isCleaned() ) {
! if ( !$this->cleanVars() ) {
! return false;
! }
}
foreach ( $this->cleanVars as $k=>$v ) {
--- 56,61 ----
function store()
{
! if ( !$this->cleanVars() ) {
! return false;
}
foreach ( $this->cleanVars as $k=>$v ) {
|