Bug #22990 ยป 14858.diff
typo3/sysext/cms/tslib/class.tslib_content.php (working copy) | ||
---|---|---|
if ($conf['sample']) {$params.='&sample=1';}
|
||
if ($conf['alternativeTempPath']) {$params.='&alternativeTempPath='.rawurlencode($conf['alternativeTempPath']);}
|
||
if ($conf['bodyTag']) {$params.='&bodyTag='.rawurlencode($conf['bodyTag']);}
|
||
if ($conf['title']) {$params.='&title='.rawurlencode($conf['title']);}
|
||
if ($conf['wrap']) {$params.='&wrap='.rawurlencode($conf['wrap']);}
|
||
// includes lines above in cache
|
||
$showPicContent = '
|
||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||
<html>
|
||
<head>
|
||
<title>'.htmlspecialchars($conf['title'] ? $conf['title'] : "Image").'</title>
|
||
' . ($conf['title'] ? '' : '<meta name="robots" content="noindex,follow" />') . '
|
||
</head>
|
||
'.($conf['bodyTag'] ? $conf['bodyTag'] : '<body>');
|
||
$wrapParts = explode('|', $conf['wrap']);
|
||
$showPicContent .= trim($wrapParts[0]) . '###IMAGE###' . trim($wrapParts[1]);
|
||
$showPicContent .= '
|
||
</body>
|
||
</html>';
|
||
$contentHash = md5('showpic' . $showPicContent);
|
||
t3lib_pageSelect::storeHash($contentHash, $showPicContent, 'showpic');
|
||
$md5_value = md5(
|
||
$imageFile.'|'.
|
||
$conf['width'].'|'.
|
||
$conf['height'].'|'.
|
||
$conf['effects'].'|'.
|
||
$conf['bodyTag'].'|'.
|
||
$conf['title'].'|'.
|
||
$conf['wrap'].'|'.
|
||
$conf['effects'].'||||'.
|
||
$GLOBALS['TYPO3_CONF_VARS']['SYS']['encryptionKey'].'|');
|
||
$params.= '&md5='.$md5_value;
|
||
$params .= '&md5=' . $md5_value . '&contentHash=' . $contentHash;
|
||
$url = $GLOBALS['TSFE']->absRefPrefix.'index.php?eID=tx_cms_showpic&file='.rawurlencode($imageFile).$params;
|
||
if ($conf['JSwindow.']['altUrl'] || $conf['JSwindow.']['altUrl.']) {
|
||
$altUrl = $this->stdWrap($conf['JSwindow.']['altUrl'], $conf['JSwindow.']['altUrl.']);
|
typo3/sysext/cms/tslib/showpic.php (working copy) | ||
---|---|---|
# NOTICE: ALL LINES above can be commented out since this script is now used via the ?eID=tx_cms_showpic parameter passed to index.php!
|
||
# For backwards compatibility in extensions using showpic.php directly this is kept for the version 4.0 until 4.5 where it is planned removed!
|
||
# NOTICE: The script below is still backwards compatible with the situation in 4.4.0 with 4.5 the parts using bodyTag, wrap and title to build
|
||
# the HTML can be removed!
|
||
if (!defined ('PATH_typo3conf')) die ('The configuration path was not properly defined!');
|
||
require_once(PATH_t3lib.'class.t3lib_stdgraphic.php');
|
||
... | ... | |
var $title;
|
||
var $wrap;
|
||
var $md5;
|
||
var $contentHash;
|
||
/**
|
||
* Init function, setting the input vars in the global space.
|
||
... | ... | |
$this->title = t3lib_div::_GP('title');
|
||
$this->wrap = t3lib_div::_GP('wrap');
|
||
$this->md5 = t3lib_div::_GP('md5');
|
||
$this->contentHash = t3lib_div::_GP('contentHash');
|
||
// ***********************
|
||
// Check parameters
|
||
... | ... | |
die('Parameter Error: Wrong parameters sent.');
|
||
}
|
||
// Need to connect to database, because this is used (typo3temp_db_tracking, cached image dimensions).
|
||
$GLOBALS['TYPO3_DB']->sql_pconnect(TYPO3_db_host, TYPO3_db_username, TYPO3_db_password);
|
||
$GLOBALS['TYPO3_DB']->sql_select_db(TYPO3_db);
|
||
// Check for the new content cache hash
|
||
if (strlen(t3lib_div::_GP('contentHash')) > 0) {
|
||
$this->content = t3lib_pageSelect::getHash($this->contentHash);
|
||
if (is_null($this->content)) {
|
||
die('Parameter Error: Content not available.');
|
||
}
|
||
}
|
||
// ***********************
|
||
// Check the file. If must be in a directory beneath the dir of this script...
|
||
// $this->file remains unchanged, because of the code in stdgraphic, but we do check if the file exists within the current path
|
||
... | ... | |
$img->tempPath = $this->alternativeTempPath;
|
||
}
|
||
// Need to connect to database, because this is used (typo3temp_db_tracking, cached image dimensions).
|
||
$GLOBALS['TYPO3_DB']->sql_pconnect(TYPO3_db_host, TYPO3_db_username, TYPO3_db_password);
|
||
$GLOBALS['TYPO3_DB']->sql_select_db(TYPO3_db);
|
||
if (strstr($this->width.$this->height, 'm')) {$max='m';} else {$max='';}
|
||
$this->height = t3lib_div::intInRange($this->height,0);
|
||
... | ... | |
if ($this->frame) {$this->frame = intval($this->frame);}
|
||
$imgInfo = $img->imageMagickConvert($this->file,'web',$this->width.$max,$this->height,$img->IMparams($this->effects),$this->frame,'');
|
||
// Create HTML output:
|
||
$this->content='';
|
||
$this->content.='
|
||
if (strlen($this->content) > 0) {
|
||
// insert image in cached HTML content
|
||
if (is_array($imgInfo)) {
|
||
$this->content = str_replace('###IMAGE###', $img->imgTag($imgInfo), $this->content);
|
||
}
|
||
} else {
|
||
// Create HTML output:
|
||
$this->content='';
|
||
$this->content.='
|
||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||
<html>
|
||
... | ... | |
</head>
|
||
'.($this->bodyTag ? $this->bodyTag : '<body>');
|
||
if (is_array($imgInfo)) {
|
||
$wrapParts = explode('|',$this->wrap);
|
||
$this->content.=trim($wrapParts[0]).$img->imgTag($imgInfo).trim($wrapParts[1]);
|
||
}
|
||
$this->content.='
|
||
if (is_array($imgInfo)) {
|
||
$wrapParts = explode('|',$this->wrap);
|
||
$this->content.=trim($wrapParts[0]).$img->imgTag($imgInfo).trim($wrapParts[1]);
|
||
}
|
||
$this->content.='
|
||
</body>
|
||
</html>';
|
||
}
|
||
}
|
||
/**
|