Notice: Undefined index: chts in _chart_append() (line 511 of /var/www/html/sites/all/modules/chart/chart.module).

The problem is that $data['chts'] is being appended to without it ever being initialized anywhere.

Here's my temp. fix:

        if (!array_key_exists('chts', $data))             
                $data['chts'] = '';

Comments

Konstantin Komelin’s picture

subscribe

defconjuan’s picture

There's a patch here http://drupal.org/node/1103966 but it's not quite working. Jump into that thread and follow/contribute so we can sort this annoying bug out.

13rac1’s picture

Status: Active » Closed (duplicate)