Task #29340
Check usage of hash_base.
Status: | Resolved | Start date: | 2011-08-30 | |
---|---|---|---|---|
Priority: | Should have | Due date: | ||
Assigned To: | - | % Done: | 0% |
|
Category: | - | Spent time: | - | |
Target version: | - | |||
TYPO3 Version: | 4.6 | Complexity: | ||
PHP Version: | Sprint Focus: |
Description
While checking the use of hash_base in class.tslibfe.php, I found the $this->hash_base is only used in to set $this->config['hash_base'] in generatePage_preProcessing (with a comment that it is used for caching informational purposes). But a grep revealed no further usage of either var's. So maybe that could get deprecated and removed in the future.
Related issues
History
#1 Updated by Björn Pedersen almost 4 years ago
[9:14] webmaster@wwwtest % pwd /home/webmaster/frm2/typo3_src_git [9:14] webmaster@wwwtest % find . -name \*.php -print0 | xargs -0 grep hash_base ./typo3/sysext/cms/tslib/class.tslib_fe.php: var $hash_base=''; // Loaded with the serialized array that is used for generating a hashstring for the cache ./typo3/sysext/cms/tslib/class.tslib_fe.php: * @return string MD5 hash of $this->hash_base which is a serialized version of there variables. ./typo3/sysext/cms/tslib/class.tslib_fe.php: $this->hash_base = serialize( ./typo3/sysext/cms/tslib/class.tslib_fe.php: return md5($this->hash_base); ./typo3/sysext/cms/tslib/class.tslib_fe.php: $this->config['hash_base'] = $this->hash_base; // For cache management informational purposes.
#2 Updated by Steffen Ritter over 3 years ago
- Target version deleted (
4.7.0)
#3 Updated by Alexander Opitz over 1 year ago
- Status changed from New to Resolved
Applied in changeset c048755e7229f10f5393f874ef24a18fef2b4e10.