DuVale / django-forum

Automatically exported from code.google.com/p/django-forum
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

link to forum in top nav has extra slash #22

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Clicking on "Forums" in the top nav sends user to <a href='{% url
forum_index %}/'> in forum_list.html. Clinks on that links result in a 404
because the user is sent to forums// instead of forum/ 

Fixed by removing extra slash from end of link:

old:
<a href='{% url forum_index %}/'>

new:
<a href='{% url forum_index %}'>

Original issue reported on code.google.com by redsnapp...@gmail.com on 1 Jun 2008 at 1:02

GoogleCodeExporter commented 9 years ago
Fixed in trunk, thank you.

Original comment by rwpoul...@gmail.com on 5 Jun 2008 at 11:10