Support Home Page › Forums › Joomla Software › Easy Folder Listing Pro Plugin › only variables should be assignd by reference › Re: only variables should be assignd by reference
May 22, 2013 at 2:15 pm
#1617
Michael Gilkes
Keymaster
@burdicklynn. Thanks for posting. To my knowledge, Mootools is still part of Joomla, even for 3.1. Mootools can’t be disabled for the plugin. Also, what version of Easy Folder Listing Pro are you using?
Nonetheless, you should be able to fix this by changing:
1 |
$document =& JFactory::getDocument(); |
to:
1 |
$document = JFactory::getDocument(); |
Try this and let me know if it works.