From 9b808efd5acd2acd17079a54e5282885c1549a84 Mon Sep 17 00:00:00 2001 From: Derek Allard Date: Sun, 23 Mar 2008 13:07:45 +0000 Subject: removed quotes around a boolean example --- user_guide/libraries/config.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'user_guide/libraries') diff --git a/user_guide/libraries/config.html b/user_guide/libraries/config.html index 2c284bb4a..b67c93ade 100644 --- a/user_guide/libraries/config.html +++ b/user_guide/libraries/config.html @@ -133,7 +133,7 @@ you can retrieve it by specifying the index name in the second parameter of the // Loads a config file named blog_settings.php and assigns it to an index named "blog_settings"
-$this->config->load('blog_settings', 'TRUE');

+$this->config->load('blog_settings', TRUE);

// Retrieve a config item named site_name contained within the blog_settings array
$site_name = $this->config->item('site_name', 'blog_settings');

-- cgit v1.2.3-24-g4f1b