Project

General

Profile

Bug #23591 » 15784_v2.diff

Administrator Admin, 2010-09-24 10:21

View differences:

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)) {
(2-2/2)