mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
BUGFIX: Fix image tracking not working cross subsite (from r88008)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/branches/2.4@96782 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
7af4414a02
commit
096bfb2565
@ -197,7 +197,10 @@ class AssetTableField extends ComplexTableField {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if($childData && $childData->hasMethod('BackLinkTracking')) {
|
if($childData && $childData->hasMethod('BackLinkTracking')) {
|
||||||
|
if(class_exists('Subsite')) Subsite::disable_subsite_filter(true);
|
||||||
$links = $childData->BackLinkTracking();
|
$links = $childData->BackLinkTracking();
|
||||||
|
if(class_exists('Subsite')) Subsite::disable_subsite_filter(false);
|
||||||
|
|
||||||
if($links->exists()) {
|
if($links->exists()) {
|
||||||
foreach($links as $link) {
|
foreach($links as $link) {
|
||||||
$backlinks[] = "<li><a href=\"admin/show/$link->ID\">" . $link->Breadcrumbs(null,true). "</a></li>";
|
$backlinks[] = "<li><a href=\"admin/show/$link->ID\">" . $link->Breadcrumbs(null,true). "</a></li>";
|
||||||
|
Loading…
Reference in New Issue
Block a user