After update to alpha 2 on the main forum page the last post column has "by guest" signs, even if the messages were created by signed users. On the container pages everything is fine.
After update to alpha 2 on the main forum page the last post column has "by guest" signs, even if the messages were created by signed users. On the container pages everything is fine.
Comments
Comment #1
RusRabbit commentedWell actually, container pages have "by guest", too. Forum pages are fine.
Comment #2
SpYkEs commentedI am having the same issue. But its coming up as Anon (just because thats my guest username). I have commented out the advanced_forum_preprocess_forum_list function in advanced_forum.module and the old function with drupal shows the last author. Trying to work through and see if i can fix it.
This is also only happening when last post is a comment. new topics are fine.
Comment #3
SpYkEs commentedok found the fix.
line 742 of advanced_forum:
c.uid topic_author_id,
should be:
c.uid reply_author_id,
My head is starting to hurt now. lol. Understand alot more about how drupal methods work :D
Comment #4
lainwired commentedi have the same problem.
spykes: does your fix break it for new posts that are uncommented or is it smart enough to use the author id when there are no comments?
Comment #5
dami commentedI think the original issue only happens on latest post with comments, and the fix is basically fixing a typo only for that part. Therefore, it doesn't break anything on new posts that are uncommented, if I remember correctly from my tests last week.
Comment #6
pobster commentedThanks, fixed it for me too.
Pobster
Comment #7
michelleChanging status so I can find it easier.
Michelle
Comment #8
gaobin commentedThanks buddy! This also works for 5.x-1.0-alpha10.
Change line 881of advanced_forum.module to c.uid reply_author_id .
GB
Comment #9
gaobin commenteddeleted.
Comment #10
Soggydoughnuts commentedAwesome this fixes one of my issues!
-Donuts
Comment #11
brenda003Had this problem for the 5.x version, as well. The above fix solved it.
Comment #12
jwilson3wow, wish i had found this post before tracking down how to fix the error on my own in reply to another open support request.
Comment #13
michelleThis code is going away. http://drupal.org/node/268273
Michelle