CMS MADE SIMPLE FORGE

TagCloud Module Edition

 

[#10690] Tagcloud does not display - fix included

avatar
Created By: TannSan (TannSan)
Date Submitted: Wed Oct 07 14:56:13 -0400 2015

Assigned To:
Version: 1.1.0
CMSMS Version: 2.0.1.1
Severity: Major
Resolution: None
State: Open
Summary:
Tagcloud does not display - fix included
Detailed Description:
Hi, at the bottom of action.default.php you have 2 smarty "assigns".  These need
to be changed to "assignGlobal" so they can be accessed in the TagCloud
template.  This is because of the variable scope change introduced with CMS MS
2.0.

$smarty->assign('items', $items);
$smarty->assign('returnid', $myReturnId);

Becomes:

$smarty->assignGlobal('items', $items);
$smarty->assignGlobal('returnid', $myReturnId);


History