This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--- Adapted from Steve's original gist - https://gist.github.com/stevewithington/5880459 getCustomSearch.cfm ---> | |
<!--- Needed a way to display content a user was credited for or had edited on the front end ---> | |
<!---Add this to the Theme or Site contentrenderer.cfc---> | |
<cffunction name="getUserActivity" output="no"> | |
<cfargument name="authorid" default="" required="yes" /> | |
<cfscript> | |
var local = {}; | |
local.feed=$.getBean('feed'); |