summaryrefslogtreecommitdiffstats
path: root/user_guide/general/alternative_php.html
diff options
context:
space:
mode:
Diffstat (limited to 'user_guide/general/alternative_php.html')
-rw-r--r--user_guide/general/alternative_php.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide/general/alternative_php.html b/user_guide/general/alternative_php.html
index b9069a8be..3193c0585 100644
--- a/user_guide/general/alternative_php.html
+++ b/user_guide/general/alternative_php.html
@@ -58,14 +58,14 @@ Alternate PHP Syntax
<h1>Alternate PHP Syntax for View Files</h1>
<p>If you do not utilize CodeIgniter's <a href="../libraries/parser.html">template engine</a>, you'll be using pure PHP
-in your View files. To minimize the PHP code in these files, and to make it easier to identify the code blocks it is recommended that you use
+in your View files. To minimize the PHP code in these files, and to make it easier to identify the code blocks it is recommended that you use
PHPs alternative syntax for control structures and short tag echo statements. If you are not familiar with this syntax, it allows you to eliminate the braces from your code,
and eliminate "echo" statements.</p>
<h2>Automatic Short Tag Support</h2>
<p><strong>Note:</strong> If you find that the syntax described in this page does not work on your server it might
-be that "short tags" are disabled in your PHP ini file. CodeIgniter will optionally rewrite short tags on-the-fly,
+be that "short tags" are disabled in your PHP ini file. CodeIgniter will optionally rewrite short tags on-the-fly,
allowing you to use that syntax even if your server doesn't support it. This feature can be enabled in your
<dfn>config/config.php</dfn> file.</p>