diff options
| author | Daniel Sutcliffe <dansut@users.sourceforge.net> | 2009-11-11 15:58:12 +0000 |
|---|---|---|
| committer | Daniel Sutcliffe <dansut@users.sourceforge.net> | 2009-11-11 15:58:12 +0000 |
| commit | 44f77f13b79a2b5406378804ab51cd8e26efa98b (patch) | |
| tree | 3d9e6e7bfb8d8a7a4e26d6c6d0089eeb55b847c1 | |
| parent | a71d0207c347a42324924fccd83101bb54ab07b8 (diff) | |
| download | install-R270.tar.gz install-R270.tar.bz2 install-R270.zip | |
Allow Smarty debug console to be turned on from config_inc.phpR270
| -rw-r--r-- | create_config_inc.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/create_config_inc.php b/create_config_inc.php index 03dac15..05434c9 100644 --- a/create_config_inc.php +++ b/create_config_inc.php @@ -1,6 +1,6 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_install/create_config_inc.php,v 1.20 2009/05/01 15:05:12 wjames5 Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_install/create_config_inc.php,v 1.21 2009/11/11 15:58:12 dansut Exp $ * @package install * @subpackage functions */ @@ -217,6 +217,11 @@ define( 'BIT_ROOT_URL', '$bit_root_url' ); // will increase the page size by at least 10%. //define( 'TEMPLATE_DEBUG', TRUE ); +// If you want to go a step further with template debugging then this enables +// smarty's debugging console. A popup with a dump of all of the vars the +// template(s) have been passed. +\$smarty_debugging = FALSE; + // This statement will enable you to view all database queries made //\$gDebug = TRUE; |
