Bug #17708 » bug_6561_tslib_content_v2.diff
typo3/sysext/cms/tslib/class.tslib_content.php 2007-10-20 15:15:28.000000000 +0200 | ||
---|---|---|
|
||
$imgMax = intval($this->stdWrap($conf['imgMax'],$conf['imgMax.']));
|
||
if ($imgMax) {
|
||
$imgCount = t3lib_div::intInRange($imgCount,0,$conf['imgMax']); // reduces the number of images.
|
||
$imgCount = t3lib_div::intInRange($imgCount,0,$imgMax); // reduces the number of images.
|
||
}
|
||
|
||
$imgPath = $this->stdWrap($conf['imgPath'],$conf['imgPath.']);
|