From e742b81261bee0c566ce2618a22238d8719e5cd0 Mon Sep 17 00:00:00 2001 From: Jennifer Hodgdon Date: Wed, 20 Mar 2013 09:17:06 -0700 Subject: [PATCH] Issue #1906506 by David_Rothstein, steveoliver: Fix documentation in default.settings.php for Twig debugging --- sites/default/default.settings.php | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/sites/default/default.settings.php b/sites/default/default.settings.php index 319db29e68b6..7fcda3182f1a 100644 --- a/sites/default/default.settings.php +++ b/sites/default/default.settings.php @@ -286,11 +286,16 @@ $settings['update_free_access'] = FALSE; /** * Twig debugging: * - * When enabled, you can use the 'dump' function in Twig templates to output - * information about variables, and templates are automatically recompiled - * whenever the source code changes. + * When debugging is enabled: + * - The markup of each Twig template is surrounded by HTML comments that + * contain theming information, such as template file name suggestions. + * - The dump() function can be used in Twig templates to output information + * about template variables. + * - Twig templates are automatically recompiled whenever the source code + * changes (see twig_auto_reload below). * - * @see http://drupal.org/node/1906392 + * For more information about debugging Twig templates, see + * http://drupal.org/node/1906392. * * Not recommended in production environments (Default: FALSE). */