kj_imagelightbox2 aktuelle Version 1.4.3 404-Fehler
Die ansonsten sehr schicke und weit verbreitete Erweiterung für typo3 kj_imagelightbox2
hat aktuell ein kleines Problem im Style, der durch das Extension-Template automatisch in den Content geschrieben wird:
#prevLink, #nextLink {
background: transparent url(../images/blank.gif) no-repeat; /* Trick IE into showing hover */
}
Diese url stimmt so in 99,9% der Fälle nicht und führt daher zu einem 404-Fehler.
Folgende kleine Veränderungen beheben das Problem:
diff class.ux_tslib_content_neu.php class.ux_tslib_content_org.php
70d69
< $blankLinkImage = ($extConf['blankLinkImage'] != ”) ? $extConf['blankLinkImage'] : ‘../images/blank.gif’;
89c88
< ‘.($showNextPrevLinkImageAlways == 0 ? ‘background: transparent url(‘.$blankLinkImage.’) no-repeat; /* Trick IE into showing hover */’ : ”).’
—
> ‘.($showNextPrevLinkImageAlways == 0 ? ‘background: transparent url(../images/blank.gif) no-repeat; /* Trick IE into showing hover */’ : ”).’
Ausserdem natürlich dann auch:
diff ext_conf_template.neu.txt ext_conf_template_org.txt
37,39d36
< # cat=plugin.kj_imagelightbox2/cimage; type=string; label= Blank Image: icon…
< blankLinkImage = typo3conf/ext/kj_imagelightbox2/lightbox/images/blank.gif
<
Tags: erweiterungen