Skip to content
Snippets Groups Projects
Commit 549734db authored by Christian Kuhn's avatar Christian Kuhn
Browse files

Fixed bug #15323: Small typo in class.t3lib_spritemanager.phps deprecationLog...

Fixed bug #15323: Small typo in class.t3lib_spritemanager.phps deprecationLog Message (Thanks to Sven Juergens)

git-svn-id: https://svn.typo3.org/TYPO3v4/Core/trunk@8544 709f56b5-9817-0410-a4d7-c38de5d9e867
parent d12a4c01
Branches
Tags
No related merge requests found
......@@ -7,6 +7,7 @@
 
2010-08-09 Christian Kuhn <lolli@schwarzbu.ch>
 
* Fixed bug #15323: Small typo in class.t3lib_spritemanager.php's deprecationLog Message (Thanks to Sven Juergens)
* Follow-up to bug #15104: Fixed parse error
 
2010-08-08 Steffen Kamper <steffen@typo3.org>
......
......@@ -167,7 +167,7 @@ class t3lib_SpriteManager {
$iconFile = $icon['icon'];
t3lib_div::deprecationLog('Usage of $PAGES_TYPES[\'icon\'] is deprecated since 4.4.' . LF .
'The extTables.php entry $PAGE_TYPES[\'' . $type . '\'][\'icon\'] = \'' . $iconFile . '\'; should be replaced with' . LF .
't3lib_SpriteManager::addTcaTypeIcon(\'pages\', ' . $type . '\', \'' . $iconFile . '\');' . LF .
't3lib_SpriteManager::addTcaTypeIcon(\'pages\', \'' . $type . '\', \'' . $iconFile . '\');' . LF .
'instead.'
);
t3lib_SpriteManager::addTcaTypeIcon('pages', $module, $iconFile);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment