[dZeeemp-cvs] dzeeemp.sources/core library.Graph.php,1.2,1.3 library.Stats.extended.php,1.2,1.3 libr
Brought to you by:
lovchy
|
From: Boris B. <lo...@us...> - 2004-06-14 12:19:43
|
Update of /cvsroot/dzeeemp/dzeeemp.sources/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18916/core Modified Files: library.Graph.php library.Stats.extended.php library.Templates.php Log Message: Graphics fixed Index: library.Graph.php =================================================================== RCS file: /cvsroot/dzeeemp/dzeeemp.sources/core/library.Graph.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** library.Graph.php 17 Apr 2004 09:55:51 -0000 1.2 --- library.Graph.php 14 Jun 2004 12:19:34 -0000 1.3 *************** *** 87,91 **** --- 87,93 ---- if ($truclr) + { imagefill($this->Img, 0, 0, $background); + } if($truclr && function_exists('imageantialias')) Index: library.Templates.php =================================================================== RCS file: /cvsroot/dzeeemp/dzeeemp.sources/core/library.Templates.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** library.Templates.php 13 Jun 2004 00:01:33 -0000 1.3 --- library.Templates.php 14 Jun 2004 12:19:34 -0000 1.4 *************** *** 181,185 **** $function = LibTemplates::_parseCallback($tmpldata[$params[1]]); ! return call_user_func_array($function, $parameters); } --- 181,189 ---- $function = LibTemplates::_parseCallback($tmpldata[$params[1]]); ! if ( !empty($function) ) ! { ! return call_user_func_array($function, $parameters); ! } ! else return ''; } *************** *** 205,208 **** --- 209,213 ---- function &replaceVariable (&$tmpldata, &$text) { + static $callback = array('LibTemplates', '_vreplaceCallback'); Index: library.Stats.extended.php =================================================================== RCS file: /cvsroot/dzeeemp/dzeeemp.sources/core/library.Stats.extended.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** library.Stats.extended.php 21 May 2004 17:47:09 -0000 1.2 --- library.Stats.extended.php 14 Jun 2004 12:19:34 -0000 1.3 *************** *** 615,617 **** ?> - --- 615,616 ---- |