diff --git a/system/guide/kohana/extension.md b/system/guide/kohana/extension.md index 2e62705..62bd1b4 100644 --- a/system/guide/kohana/extension.md +++ b/system/guide/kohana/extension.md @@ -10,7 +10,7 @@ The default Kohana classes, and many extensions, use this definition so that alm For instance, if you wanted to create method that sets encrypted cookies using the [Encrypt] class, you would create a file at `APPPATH/classes/Cookie.php` that extends Kohana_Cookie, and adds your functions: - 'value', @@ -24,7 +24,7 @@ For example, if we wanted to change or add to an entry in the inflector configur // config/inflector.php - [ @@ -40,7 +40,7 @@ Let's say we want a config file to store and easily change things like the title // config/site.php - 'Our Shiny Website', @@ -53,7 +53,7 @@ Let's say we want an archive of versions of some software. We could use config f // config/versions.php - [ diff --git a/system/guide/kohana/tutorials/hello-world.md b/system/guide/kohana/tutorials/hello-world.md index 561532f..49b84a8 100644 --- a/system/guide/kohana/tutorials/hello-world.md +++ b/system/guide/kohana/tutorials/hello-world.md @@ -10,7 +10,7 @@ First off we have to make a controller that Kohana can use to handle a request. Create the file `application/classes/Controller/Hello.php` in your application folder and fill it out like so: -