From e0fc57bffe1220b149b3f4f9ed800c8dd356bd57 Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Thu, 4 Sep 2008 19:29:17 +0000 Subject: removed random invisible character (ASCII 194) from HTML and PHP files --- user_guide/general/common_functions.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'user_guide/general') diff --git a/user_guide/general/common_functions.html b/user_guide/general/common_functions.html index 65058b9e3..432ba02c3 100644 --- a/user_guide/general/common_functions.html +++ b/user_guide/general/common_functions.html @@ -62,11 +62,11 @@ Auto-loading Resources

is_writable() returns TRUE on Windows servers when you really can't write to the file as the OS reports to PHP as FALSE only if the read-only attribute is marked. This function determines if a file is actually writable by attempting to write to it first. Generally only recommended on platforms where this information may be unreliable.

if (is_really_writable('file.txt'))
{
-      echo "I could write to this if I wanted to";
+    echo "I could write to this if I wanted to";
}
else
{
-      echo "File is not writable";
+    echo "File is not writable";
}

config_item('item_key')

The Config library is the preferred way of accessing configuration information, however config_item() can be used to retrieve single keys. See Config library documentation for more information.

-- cgit v1.2.3-24-g4f1b