/[drupal]/contributions/modules/chart/chart.module
ViewVC logotype

Diff of /contributions/modules/chart/chart.module

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.18, Wed Oct 28 03:59:30 2009 UTC revision 1.19, Wed Oct 28 04:05:57 2009 UTC
# Line 1  Line 1 
1  <?php  <?php
2  // $Id: chart.module,v 1.17 2009/10/28 02:16:47 boombatower Exp $  // $Id: chart.module,v 1.18 2009/10/28 03:59:30 boombatower Exp $
3  /**  /**
4   * @file   * @file
5   * Provides Google chart API integration.   * Provides Google chart API integration.
# Line 393  function _chart_encode_data($data) { Line 393  function _chart_encode_data($data) {
393          $output .= _chart_encode_data($v);          $output .= _chart_encode_data($v);
394        }        }
395        else {        else {
396          if ($v || $v === 0){          if ($v !== FALSE){
397            $output .= $v . ',';            $output .= $v . ',';
398          }          }
399          else {          else {

Legend:
Removed from v.1.18  
changed lines
  Added in v.1.19

  ViewVC Help
Powered by ViewVC 1.1.2