* Fixed bug #1940: "OPEN DOCUMENTS" causes 404 error (Thanks to Christian Trabold)
* Feature #6258: Change config.uniqueLinkVars to 1 (Thanks to Georg Ringer)
* Fixed bug #5082: Clean up a nested htmlspecialchars() in class.db_list_extra.inc (Thanks to Christian Kuhn)
* Fixed bug #1940: "OPEN DOCUMENTS" causes 404 error (Thanks to Christian Trabold)
* Feature #6258: Change config.uniqueLinkVars to 1 (Thanks to Georg Ringer)
* Fixed bug #5082: Clean up a nested htmlspecialchars() in class.db_list_extra.inc (Thanks to Christian Kuhn)
+ * Fixed bug #6561: imgMax and imgStart (IMGTEXT) not working properly (Thanks to Helmut Hummel)
2007-10-26 Stanislas Rolland <stanislas.rolland@fructifor.ca>
2007-10-26 Stanislas Rolland <stanislas.rolland@fructifor.ca>
$splitArr = $GLOBALS['TSFE']->tmpl->splitConfArray($splitArr, $imgCount);
$imageRowsFinalWidths = Array(); // contains the width of every image row
$splitArr = $GLOBALS['TSFE']->tmpl->splitConfArray($splitArr, $imgCount);
$imageRowsFinalWidths = Array(); // contains the width of every image row
+ $imgsTag = array(); // array index 0 will be the first shown image
$origImages = array();
for ($a=0; $a<$imgCount; $a++) {
$imgKey = $a+$imgStart;
$origImages = array();
for ($a=0; $a<$imgCount; $a++) {
$imgKey = $a+$imgStart;
$imgConf['emptyTitleHandling'] = 'removeAttr';
}
}
$imgConf['emptyTitleHandling'] = 'removeAttr';
}
}
- $imgsTag[$imgKey] = $this->cObj->IMAGE($imgConf);
+ $imgsTag[$a] = $this->cObj->IMAGE($imgConf);
- $imgsTag[$imgKey] = $this->cObj->IMAGE(Array('file' => $totalImagePath)); // currentValKey !!!
+ $imgsTag[$a] = $this->cObj->IMAGE(Array('file' => $totalImagePath)); // currentValKey !!!
}
// Restore our ATagParams
$GLOBALS['TSFE']->ATagParams = $oldATagParms;
// Store the original filepath
}
// Restore our ATagParams
$GLOBALS['TSFE']->ATagParams = $oldATagParms;
// Store the original filepath
- $origImages[$imgKey] = $GLOBALS['TSFE']->lastImageInfo;
+ $origImages[$a] = $GLOBALS['TSFE']->lastImageInfo;
$imageRowsFinalWidths[floor($a/$colCount)] += $GLOBALS['TSFE']->lastImageInfo[0];
}
$imageRowsFinalWidths[floor($a/$colCount)] += $GLOBALS['TSFE']->lastImageInfo[0];
}