Welcome Guest, Not a member yet? Register   Sign In
User Guide errors
#1

(This post was last modified: 06-28-2016, 07:09 PM by george--fb.)

There are a few errors in the user guide on this page

Quote:public function view($slug = NULL)
{
       $model = new NewsModel();

       $data['news'] = $model->getNews($slug);

       if (empty($data['news']))
       {
               throw new \CodeIgniter\PageNotFoundException('Cannot page the page: '. $slug);
       }

       $data['title'] = $data['news'][0]['title'];

       echo view('Templates/Header', $data);
       echo view('News/Index', $data);
       echo view('Templates/Footer');
}

<?php
echo '<h2>'.$news['title'].'</h2>';
echo $$news['text'];

page I assume it should be find
[0] shouldn't be there
Index should be View
$ shouldn't be there
Reply
#2

Thanks for the comments. I have fixed them up in the repo. Not sure how long it will take to show up in the live version.

For future requests - we do accept pull requests for changes. Smile
Reply
#3

(06-28-2016, 08:00 PM)kilishan Wrote: Thanks for the comments. I have fixed them up in the repo. Not sure how long it will take to show up in the live version.

For future requests - we do accept pull requests for changes. Smile

Updated the live user guide Undecided
Reply
#4

Well that was quick! Smile
Reply




Theme © iAndrew 2016 - Forum software by © MyBB