From 233a13c1dd3f4ce676b3ade443a7c67d6a54e83f Mon Sep 17 00:00:00 2001 From: Dmitry Dulepov Date: Mon, 1 Sep 2008 16:50:10 +0000 Subject: [PATCH] Fixed bug #9249: Misspelling in Install tool git-svn-id: https://svn.typo3.org/TYPO3v4/Core/trunk@4043 709f56b5-9817-0410-a4d7-c38de5d9e867 --- ChangeLog | 1 + typo3/sysext/install/mod/class.tx_install.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 0c4602d7738c..434b18b011b7 100755 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ * Fixed bug #8508: String "Important Notice" in About Modules is hardcoded * Fixed bug #2222: CSH missing for localization settings of pages (thanks to Christian Kuhn) + * Fixed bug #9249: Misspelling in Install tool (thanks to Christian Kuhn) 2008-08-30 Stanislas Rolland diff --git a/typo3/sysext/install/mod/class.tx_install.php b/typo3/sysext/install/mod/class.tx_install.php index 3a031b148380..36b5c2d62cbd 100755 --- a/typo3/sysext/install/mod/class.tx_install.php +++ b/typo3/sysext/install/mod/class.tx_install.php @@ -3082,7 +3082,7 @@ From sub-directory: $output = $imageProc->tempPath.$imageProc->filenamePrefix.t3lib_div::shortMD5('GDwithText-niceText-shadow').'.'.$imageProc->gifExtension; $imageProc->ImageWrite($im,$output); $fileInfo = $imageProc->getImageDimensions($output); - $result = $this->displayTwinImage($fileInfo[3],$imageProc->IM_commands, array('Note on drop shadows:','Drop shadows are done my using ImageMagick to blur a mask through which the drop shadow is generated. The blurring of the mask only works in ImageMagick 4.2.9 and not ImageMagick 5 - which is why you may see a hard and not soft shadow.')); + $result = $this->displayTwinImage($fileInfo[3],$imageProc->IM_commands, array('Note on drop shadows:','Drop shadows are done by using ImageMagick to blur a mask through which the drop shadow is generated. The blurring of the mask only works in ImageMagick 4.2.9 and not ImageMagick 5 - which is why you may see a hard and not soft shadow.')); $this->message($headCode,"Render 'niceText' with a shadow under", "(This test makes sense only if the above test had a correct output. But if so, you may not see a soft dropshadow from the third text string as you should. In that case you are most likely using ImageMagick 5 and should set the flag TYPO3_CONF_VARS[GFX][im_v5effects]. However this may cost server performance!
Finally if you see no drop shadow at all or if the shadow is still not soft, then check if you are using GDlib2 and if so set TYPO3_CONF_VARS[GFX][gdlib_2]=1)

". $result[0],$result[1]); -- 2.20.1