@@ -63,7 +63,7 @@ displays the CodeIgniter welcome page.
6363The ``Pages `` class is extending the
6464``CodeIgniter\Controller `` class. This means that the new Pages class can access the
6565methods and variables defined in the ``CodeIgniter\Controller `` class
66- (*system/Controller.php *).
66+ (** system/Controller.php * *).
6767
6868The **controller is what will become the center of every request ** to
6969your web application. Like any PHP class, you refer to
@@ -99,7 +99,7 @@ includes the following code:
9999 </body>
100100 </html>
101101
102- .. note :: If you look closely in **header.php** template we are using an ** esc()**
102+ .. note :: If you look closely in **header.php** template we are using an `` esc()``
103103 function. It's a global function provided by CodeIgniter to help prevent
104104 XSS attacks. You can read more about it :doc: `here </general/common_functions >`.
105105
@@ -163,7 +163,7 @@ is assigned to a variable with the name of its key. So the value of
163163``$data['title'] `` in the controller is equivalent to ``$title `` in the
164164view.
165165
166- .. note :: Any files and directory names passed into the ** view()** function MUST
166+ .. note :: Any files and directory names passed into the `` view()`` function MUST
167167 match the case of the actual directory and file itself or the system will
168168 throw errors on case-sensitive platforms. You can read more about it
169169 :doc: `here </outgoing/views >`.
@@ -269,5 +269,5 @@ You should see something like the following:
269269 :align: center
270270
271271.. note :: When manually specifying routes, it is recommended to disable
272- auto-routing by setting ``$routes->setAutoRoute(false); `` in the Routes.php file.
272+ auto-routing by setting ``$routes->setAutoRoute(false); `` in the ** Routes.php ** file.
273273 This ensures that only routes you define can be accessed.
0 commit comments