i\'m using RSgallery 1.10.2 (latest alpha releas) and I get the follwing error message when I open the gallery on my site (via a menu link):
[code:1]Fatal error: Only variables can be passed by reference in ******\\components\\com_rsgallery2\\rsgallery2.html.php on line 1226[/code:1]
I looked into the code and it turned out that this line is the same line as mentioned by Zdenek
line 1226 says:
[code:1]$size = getimagesize( imgUtils::getImgDisplay($row->name), true );[/code:1]
as mentioned by Zdenek, I changed the code into:
[code}$size = getimagesize( imgUtils::getImgDisplay($row->name, true) );[/code]
(notice the position of the \')\' sign)
de page worked after I changed the line!
I also found the right syntax in line 570, like Zdenek did

in that line, the code is already written properly