I added the extension:GbrowseImage in my site. And configured it according to the instructions. But the UNIQ error occured, see example here.
What can I do for the correct result?
Best regards
I added the extension:GbrowseImage in my site. And configured it according to the instructions. But the UNIQ error occured, see example here.
What can I do for the correct result?
Best regards
The extension GbrowseImage seems to be producing that bug, maybe it's incompatible with 1.23.
You should see if there's a recent version available for download, or try the fix that according to QINU fix is using the method recursiveTagParse
of the parser instead of Parser::parse
.
Thank you Ciencia. But I am new to php programing. It is hard for me to correct the extension. Any other suggestions?
I tested it, and I just needed to change this to make it work
function efGbrowseImageRender( $input, $args, &$parser, $frame = null ) {
by
function efGbrowseImageRender( $input, $args, $parser, $frame = null ) {
(removing the "&")