From 3f1cc89cc1e8a32d82f2371f338e47c40839bfe1 Mon Sep 17 00:00:00 2001 From: Nathan Haug <nate@lullabot.com> Date: Mon, 17 Mar 2014 20:59:06 -0700 Subject: [PATCH] Issue #2219981: hook_charts_type_info_alter() is broken. --- charts.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts.module b/charts.module index 6f7674c..23f1938 100644 --- a/charts.module +++ b/charts.module @@ -308,7 +308,7 @@ function charts_type_info() { 'stacking' => FALSE, ); } - drupal_alter('charts_type_info', $charts_info); + drupal_alter('charts_type_info', $charts_type_info); return $charts_type_info; } -- GitLab