Bug #23591 » 15784_v2.diff
typo3/sysext/cms/tslib/class.tslib_content.php (working copy) | ||
---|---|---|
$tableWidth = max($imageRowsFinalWidths) + $colspacing * ($colCount - 1) + $colCount * $border * $borderThickness * 2;
|
||
// make table for pictures
|
||
$index = $imgStart;
|
||
$index = $imgIndex = $imgStart;
|
||
$noRows = $this->stdWrap($conf['noRows'], $conf['noRows.']);
|
||
$noCols = $this->stdWrap($conf['noCols'], $conf['noCols.']);
|
||
... | ... | |
// Strips profile information of image to save some space:
|
||
if (isset($configuration['stripProfile'])) {
|
||
if ($configuration['stripProfile']) {
|
||
$parameters = $gfxConf['im_stripProfileCommand'] . $parameters;
|
||
$gfxConf = $GLOBALS['TYPO3_CONF_VARS']['GFX'];
|
||
$parameters = (isset($gfxConf['im_stripProfileCommand']) ? $gfxConf['im_stripProfileCommand'] : '') . $parameters;
|
||
} else {
|
||
$parameters .= '###SkipStripProfile###';
|
||
}
|
||
... | ... | |
' AND doktype NOT IN (' . $this->checkPid_badDoktypeList . ')'
|
||
);
|
||
if ($error = $GLOBALS['TYPO3_DB']->sql_error()) {
|
||
$query = $GLOBALS['TYPO3_DB']->SELECTquery(
|
||
'uid',
|
||
'pages',
|
||
'uid IN (' . implode(',', $listArr) . ')' . $this->enableFields('pages') .
|
||
' AND doktype NOT IN (' . $this->checkPid_badDoktypeList . ')'
|
||
);
|
||
$GLOBALS['TT']->setTSlogMessage($error . ': ' . $query, 3);
|
||
} else {
|
||
while ($row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res)) {
|
- « Previous
- 1
- 2
- Next »