On a user's stream page, I notice the User Name is missing. Instead of "USERNAME's Activity Stream", the title reads "'s Activity Stream" Any one else have this problem?
On a user's stream page, I notice the User Name is missing. Instead of "USERNAME's Activity Stream", the title reads "'s Activity Stream" Any one else have this problem?
Comments
Comment #1
eojthebraveI was able to re-create this problem by navigating to /stream/, looks like the code is performing a lookup of the user based on uid, and expects the second part of the path to be a users UID.
spiffyd, can you confirm that going to /stream/ work's as expected?
Comment #2
spiffyd commented@eojthebrave
Going to /stream/ works fine. "All users' Activity Streams" is shown. The issue is just with individual users.
Comment #3
akalsey commentedFound it...
This happened when going to a stream item's node page, then clicking the breadcrumb link to return to the user's stream. The breadcrumb link was using $user->name instead of $user->uid
Fixed in 5.x
Comment #4
akalsey commentedAnd now fixed in 6.x as well
Comment #5
spiffyd commentedThe bug is still present in the latest release for the specific user's stream: http://example.com/stream/USER
Only " 's Activity Stream" is displayed.
http://example.com/stream works fine though. "All users' Activity Streams" is displayed.
Comment #6
akalsey commentedHow are you getting to that URL? Activity Stream URLs (and pretty much everything else in Drupal) are in the format /stream/UID not /stream/USERNAME
Comment #7
akalsey commentedComment #8
spiffyd commented@akalsey You're right. I was confused between USERNAME and UID. UID (which is a #) works.