Come together with the global Drupal community in Rotterdam, 28 Sept – 1 Oct 2026. Sessions, contribution, connection, and Early Bird savings until 8 June.
That string doesn't exist in the code because the words "Activity Stream" are in a variable set from the admin page. See the function "activitystream_page" in activitystream.module.
This bug existed in an early version of the module, but as far as I can tell it no longer occurs. Can you update to the latest beta and tell me if you still have the problem?
Where's the url "/stream/skull" coming from? Do you have a pathauto thing set up for that? The URL should be /stream/10 (or whatever the numeric uid for the user "skull" is)
pathauto has only one option for User "path settings",the "User path settings".
I want to use [user-raw] (it means the username) so the right code for who wana use [user-raw] is that:
It seems like your issue is related to your customizations, then. On several test and production systems using the stock module, this issue doesn't exist.
Comments
Comment #1
Craig Gardner commentedI don't see the string "'s String" string anywhere in the code.
Comment #2
akalsey commentedComment #3
akalsey commentedThat string doesn't exist in the code because the words "Activity Stream" are in a variable set from the admin page. See the function "activitystream_page" in activitystream.module.
This bug existed in an early version of the module, but as far as I can tell it no longer occurs. Can you update to the latest beta and tell me if you still have the problem?
Comment #4
akalsey commentedComment #5
skullJ commentedI have the same problem and im using the latest version.
It seems that here is the problem
$user->name is probably empty!!!
Comment #6
akalsey commentedCan't be. That's your login name.
Got a URL where I can look at this?
Comment #7
skullJ commentedThank you very much!!
http://www.myfeed.gr/stream/skull
Comment #8
skullJ commentedOK i fixed the displayed username but is looks like the fuction _activitystream_get_activity dont return only user's feeds.
http://www.myfeed.gr/stream/skull
Comment #9
skullJ commentedlol
if drupal_set_title(check_plain($uid .'\'s ' . $title)); then shows the username
if drupal_set_title(check_plain($user->uid .'\'s ' . $title)); then shows always 0
if drupal_set_title(check_plain($uid .'\'s ' . $title)); then shows always nothing
i think the user_load have syntax error http://api.drupal.org/api/function/user_load/6 because the $uid is not a numeric!
Comment #10
akalsey commentedWhere's the url "/stream/skull" coming from? Do you have a pathauto thing set up for that? The URL should be /stream/10 (or whatever the numeric uid for the user "skull" is)
Comment #11
skullJ commentedpathauto has only one option for User "path settings",the "User path settings".
I want to use [user-raw] (it means the username) so the right code for who wana use [user-raw] is that:
working 100%.
Thank you :D
Comment #12
akalsey commentedIt seems like your issue is related to your customizations, then. On several test and production systems using the stock module, this issue doesn't exist.