From: <ok...@us...> - 2003-01-05 13:55:50
|
Update of /cvsroot/xoops/xoops2/class In directory sc8-pr-cvs1:/tmp/cvs-serv29406/class Modified Files: xoopsblock.php xoopscomments.php Log Message: removed deprecated isCleaned() method Index: xoopsblock.php =================================================================== RCS file: /cvsroot/xoops/xoops2/class/xoopsblock.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** xoopsblock.php 2 Jan 2003 15:15:23 -0000 1.1 --- xoopsblock.php 5 Jan 2003 13:55:47 -0000 1.2 *************** *** 81,88 **** function store() { ! if ( !$this->isCleaned() ) { ! if ( !$this->cleanVars() ) { ! return false; ! } } foreach ( $this->cleanVars as $k=>$v ) { --- 81,86 ---- function store() { ! if ( !$this->cleanVars() ) { ! return false; } foreach ( $this->cleanVars as $k=>$v ) { Index: xoopscomments.php =================================================================== RCS file: /cvsroot/xoops/xoops2/class/xoopscomments.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** xoopscomments.php 2 Jan 2003 15:15:23 -0000 1.1 --- xoopscomments.php 5 Jan 2003 13:55:47 -0000 1.2 *************** *** 77,84 **** function store() { ! if ( !$this->isCleaned() ) { ! if ( !$this->cleanVars() ) { ! return false; ! } } foreach ( $this->cleanVars as $k=>$v ) { --- 77,82 ---- function store() { ! if ( !$this->cleanVars() ) { ! return false; } foreach ( $this->cleanVars as $k=>$v ) { |