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