Re: Re: 画像の大きさ
2015年6月13日 at 22:50
5.6.3.3 特有のバグでした。次回バージョンでは修正される予定です。
5.6.3.3で下記の場所を修正すれば、「自動で」が使用できるようになります。
新規インストールの場合
/concrete/core/controllers/blocks/image.php 71行目
$args['forceImageToMatchDimensions'] = ($args['forceImageToMatchDimensions'] != '') ? 1 : 0;
↓
$args['forceImageToMatchDimensions'] = ($args['forceImageToMatchDimensions'] != '') ? $args['forceImageToMatchDimensions'] : 0;
アップデートされている場合
/updates/concrete5.6.3.3.ja_updater/concrete/core/controllers/blocks/image.php 71行目
$args['forceImageToMatchDimensions'] = ($args['forceImageToMatchDimensions'] != '') ? 1 : 0;
↓
$args['forceImageToMatchDimensions'] = ($args['forceImageToMatchDimensions'] != '') ? $args['forceImageToMatchDimensions'] : 0;
Your post has been saved and will be published after approval by the forum moderator.