administrator\components\com_phocagallery\libraries\phocagallery\render\renderdetailwindow.php
the line cca 601 - in method renderHighslideJSImage - to discover which value for variable $type it gets

Jan
Code: Select all
if ($type == 'li') {
$typeOutput = 'groupLI';
} else if ($type == 'pm') {
$typeOutput = 'groupPM';
} else if ($type == 'ri' ){
$typeOutput = 'groupRI';
} else if ($type == 'pl' ){
$typeOutput = 'groupPl';
} else {
$typeOutput = 'groupC';
}
Code: Select all
if ($type == 'li') {
$typeOutput = 'groupLI';
} else if (strtolower($type) == 'pm' ) {
$typeOutput = 'groupPM';
} else if (strtolower($type) == 'ri' ){
$typeOutput = 'groupRI';
} else if (strtolower($type) == 'pl' ){
$typeOutput = 'groupPl';
} else {
$typeOutput = 'groupC';
}
Hello, Jan!Jan wrote: ↑19 Dec 2017, 23:35 Hi, should be Ok in version 4.3.7
https://www.phoca.cz/news/961-phoca-gal ... 7-released
Jan