From c53073f50cfd255bf8a169564ed42cdccca2bb85 Mon Sep 17 00:00:00 2001 From: Jeff Segars Date: Thu, 10 Jan 2008 15:55:26 +0000 Subject: [PATCH 1/1] Fixed bug #7105: Default value of image_orient is invalid (Thanks to Steffen Kamper) git-svn-id: https://svn.typo3.org/TYPO3v4/Core/trunk@2877 709f56b5-9817-0410-a4d7-c38de5d9e867 --- ChangeLog | 4 ++++ typo3/sysext/cms/tbl_tt_content.php | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 5a05e88743b..f39d3511bab 100755 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-01-10 Jeff Segars + + * Fixed bug #7105: Default value of image_orient is invalid (Thanks to Steffen Kamper) + 2008-01-09 Benjamin Mack * (cleanup) Fixed #6957: Removed bottom button panel in alt_doc.php diff --git a/typo3/sysext/cms/tbl_tt_content.php b/typo3/sysext/cms/tbl_tt_content.php index 7ffee316222..2ca6ef0c049 100755 --- a/typo3/sysext/cms/tbl_tt_content.php +++ b/typo3/sysext/cms/tbl_tt_content.php @@ -456,7 +456,7 @@ $TCA['tt_content'] = Array ( Array('LLL:EXT:cms/locallang_ttc.php:imageorient.I.10', 26, 'selicons/intext_left_nowrap.gif') ), 'selicon_cols' => 6, - 'default' => '8', + 'default' => '0', 'iconsInOptionTags' => 1, ) ), -- 2.20.1