diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-08-09 19:55:57 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-08-09 19:55:57 +0000 |
commit | 619c35992e6356f0886854d1edaba2d5c97c20dc (patch) | |
tree | 24804d2994d525b681670fee3725110e752d6094 /profiles | |
parent | 0777093053972f73f7cb3f1ca9badb9b45b49fe9 (diff) | |
download | brdo-619c35992e6356f0886854d1edaba2d5c97c20dc.tar.gz brdo-619c35992e6356f0886854d1edaba2d5c97c20dc.tar.bz2 |
- Patch #812688 by andypost, Damien Tournoud: organize image formatters around settings.
Diffstat (limited to 'profiles')
-rw-r--r-- | profiles/standard/standard.install | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/profiles/standard/standard.install b/profiles/standard/standard.install index 8e1a985d2..2881602b0 100644 --- a/profiles/standard/standard.install +++ b/profiles/standard/standard.install @@ -384,12 +384,14 @@ function standard_install() { 'display' => array( 'default' => array( 'label' => 'hidden', - 'type' => 'image__large', + 'type' => 'image', + 'settings' => array('image_style' => 'large', 'image_link' => ''), 'weight' => -1, ), 'teaser' => array( 'label' => 'hidden', - 'type' => 'image_link_content__medium', + 'type' => 'image', + 'settings' => array('image_style' => 'medium', 'image_link' => 'content'), 'weight' => -1, ), ), |