--------------- Added [DATE]1370274005[/DATE] at [TIME]1370274005[/TIME] ---------------
For anyone Who is having this issue I fixed it. I leave it here step by step.
1?
First of all go to your vBulletin installation and then go to the dir:
/vb/activitystream/view/perm/project/
2?
Open the file
issue.php
Search for
PHP Code:
public function __construct(&$content)
Replace it with
PHP Code:
public function __construct(&$content, &$vbphrase)
3?
Search for:
PHP Code:
return parent::__construct($content);
Replace it with
PHP Code:
return parent::__construct($content,$vbphrase);
4?
Search for:
PHP Code:
public function fetchTemplate($templatename, $activity)
Replace it with:
PHP Code:
public function fetchTemplate($templatename, $activity, $skipgroup = false, $fetchphrase = false)
Do exactly the same for the file
issuenote.php
If all changes where made right, you're going to see again activty stream on members page, and home page without any issue.