I think that there is a problem with the tutorial. On day 5, in the
templates, section it tells you to replace listSuccess with a few
simple lines of code. Then it gives a link to get the _list.php from
svn.
Unfortunately, that link doesn't point to a file called _list.php, it
links to a file called _question_list.php. That doesn't work even
after I change the name, or change the include_partial to use this
name.
I listed it as major because it seems no one can complete the tutorial without having the correct file.
Here is the section with the problem:
= = = = = = = =
Templates
The list of question displayed in question/templates/listSuccess.php
will be reused somewhere else in the future. So we will put the
template code to display a list of question in a _list.php fragment
and replace the listSuccess.php content by a simple:
<h1>popular questions</h1>
<?php echo include_partial('list', array('question_pager' =>
$question_pager)) ?>
The content of the _list.php fragment can be seen in the askeet SVN
repository.
= = = = = = = =