From: <ok...@us...> - 2003-01-05 13:55:50
|
Update of /cvsroot/xoops/xoops2/kernel/image/manager In directory sc8-pr-cvs1:/tmp/cvs-serv29406/kernel/image/manager Modified Files: image.php imgcat.php Log Message: removed deprecated isCleaned() method Index: image.php =================================================================== RCS file: /cvsroot/xoops/xoops2/kernel/image/manager/image.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** image.php 2 Jan 2003 16:22:47 -0000 1.1 --- image.php 5 Jan 2003 13:55:47 -0000 1.2 *************** *** 94,101 **** return true; } ! if (!$image->isCleaned()) { ! if (!$image->cleanVars()) { ! return false; ! } } foreach ($image->cleanVars as $k => $v) { --- 94,99 ---- return true; } ! if (!$image->cleanVars()) { ! return false; } foreach ($image->cleanVars as $k => $v) { Index: imgcat.php =================================================================== RCS file: /cvsroot/xoops/xoops2/kernel/image/manager/imgcat.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** imgcat.php 2 Jan 2003 16:22:48 -0000 1.1 --- imgcat.php 5 Jan 2003 13:55:47 -0000 1.2 *************** *** 92,99 **** return true; } ! if (!$imgcat->isCleaned()) { ! if (!$imgcat->cleanVars()) { ! return false; ! } } foreach ($imgcat->cleanVars as $k => $v) { --- 92,97 ---- return true; } ! if (!$imgcat->cleanVars()) { ! return false; } foreach ($imgcat->cleanVars as $k => $v) { |