[dZeeemp-cvs] dzeeemp.sources/extensions/interfaces/Root section.interfaces.php,1.1.1.1,1.2 section.
Brought to you by:
lovchy
|
From: Boris B. <lo...@us...> - 2004-06-14 12:19:43
|
Update of /cvsroot/dzeeemp/dzeeemp.sources/extensions/interfaces/Root In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18916/extensions/interfaces/Root Modified Files: section.interfaces.php section.stats.php section.users.php Log Message: Graphics fixed Index: section.stats.php =================================================================== RCS file: /cvsroot/dzeeemp/dzeeemp.sources/extensions/interfaces/Root/section.stats.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** section.stats.php 19 May 2004 23:11:38 -0000 1.2 --- section.stats.php 14 Jun 2004 12:19:34 -0000 1.3 *************** *** 207,214 **** $image->AddData($values); ! $image->buildGraph(780, 400); $image->Output(); ! exit(); } // }}} --- 207,214 ---- $image->AddData($values); ! $image->buildGraph(780, 400, false); $image->Output(); ! Thorn::stopIteration(); } // }}} *************** *** 437,441 **** $image->Output(); ! exit(); } // }}} --- 437,441 ---- $image->Output(); ! Thorn::stopIteration(); } // }}} *************** *** 654,658 **** $_SESSION['stats_data'] = $data; } ! foreach ($data as $value) $sum += $value['number']; $colors = array ( --- 654,658 ---- $_SESSION['stats_data'] = $data; } ! if (is_array($data)) foreach ($data as $value) $sum += $value['number']; $colors = array ( *************** *** 687,691 **** $image->Output(); ! exit(); } // }}} --- 687,691 ---- $image->Output(); ! Thorn::stopIteration(); } // }}} Index: section.users.php =================================================================== RCS file: /cvsroot/dzeeemp/dzeeemp.sources/extensions/interfaces/Root/section.users.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** section.users.php 11 Apr 2004 12:48:35 -0000 1.1.1.1 --- section.users.php 14 Jun 2004 12:19:34 -0000 1.2 *************** *** 192,196 **** ); ! $output = LibTemplates::replacevariable ($tmpldata,$output); } else $output = $this->_txt($__Errors->select(3)); --- 192,196 ---- ); ! $output = LibTemplates::replacevariable ($tmpldata, $output); } else $output = $this->_txt($__Errors->select(3)); Index: section.interfaces.php =================================================================== RCS file: /cvsroot/dzeeemp/dzeeemp.sources/extensions/interfaces/Root/section.interfaces.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** section.interfaces.php 11 Apr 2004 12:48:17 -0000 1.1.1.1 --- section.interfaces.php 14 Jun 2004 12:19:34 -0000 1.2 *************** *** 13,17 **** $__Lang = &Thorn::getInstance('lang'); ! $data = LibTnterfaces::getList(); foreach ($data as $interface) --- 13,17 ---- $__Lang = &Thorn::getInstance('lang'); ! $data = LibInterfaces::getList(); foreach ($data as $interface) |