From 5d410db75704f2e009ff1786032eba17c7097083 Mon Sep 17 00:00:00 2001 From: Axel Rutz Date: Wed, 17 Jul 2013 18:41:44 +0200 Subject: [PATCH] Issue #2044207: Added Allow config truncation to be configured. --- ui/ui.theme.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/ui.theme.inc b/ui/ui.theme.inc index 42bf6e8..6d6c33e 100644 --- a/ui/ui.theme.inc +++ b/ui/ui.theme.inc @@ -143,7 +143,7 @@ function theme_rules_parameter_configuration($variables) { $label_attributes = drupal_attributes($label_attributes); $output = "" . check_plain($element['#info']['label']) . ': '; - $output .= "" . truncate_utf8($content, 30, TRUE, TRUE) . ""; + $output .= "" . truncate_utf8($content, variable_get('rules_ui_config_truncate', 30), TRUE, TRUE) . ""; return $output; } -- 1.7.9.5