View previous topic :: View next topic |
Author |
Message |
java
Joined: 15 Feb 2003 Posts: 5 Location: Paris
|
Posted: Sun Apr 27, 2003 3:49 pm Post subject: index.php?author=1 |
|
|
Hello tout le monde,
j'ai un ptit problème, je compte faire un blog collectif et il me faudrait, dans le menu, un moyen pour ne faire apparaitre que les posts d'une seule personne. Dans "readme.html", on trouve ceci :
Code: | index.php?author=1 will display all posts from the author #1 |
mais le lien renvoie à la page d'accueil avec les posts de tout le monde. Est-ce un bug connu ? Comment faire pour y remédier ?
merci ! _________________ hiho powered - http://www.vaurien.net/ |
|
Back to top |
|
 |
archiguy
Joined: 05 Mar 2003 Posts: 38
|
Posted: Tue Apr 29, 2003 10:04 am Post subject: |
|
|
j'ai exactement le même bug, si qq a une idée? _________________ Archiguy
http://www.archiguy.com
Mais qu'est ce qu'il m'arrive? |
|
Back to top |
|
 |
archiguy
Joined: 05 Mar 2003 Posts: 38
|
Posted: Wed May 21, 2003 10:30 pm Post subject: |
|
|
voila la solution :
On line 144 of blog.header.php you'll see the line:
Code:
if ((!empty($author)) || ($author == 'all') || ($cat == '0')) {
You need to change it to the following:
Code:
if ((empty($author)) || ($author == 'all') || ($cat == '0')) {
merci navi _________________ Archiguy
http://www.archiguy.com
Mais qu'est ce qu'il m'arrive? |
|
Back to top |
|
 |
|