diff options
| author | lsces <lester@lsces.co.uk> | 2012-09-08 14:58:51 +0100 |
|---|---|---|
| committer | lsces <lester@lsces.co.uk> | 2012-09-08 14:58:51 +0100 |
| commit | 6cb837e5be8e5c32a4cc93d30fff1b649486d84b (patch) | |
| tree | 501cd0a4c8e730ff9167328b14d8b5c997ac4c9d | |
| parent | 829265a52d330bf5f6731aa75697d5f02b7d4a38 (diff) | |
| download | install-6cb837e5be8e5c32a4cc93d30fff1b649486d84b.tar.gz install-6cb837e5be8e5c32a4cc93d30fff1b649486d84b.tar.bz2 install-6cb837e5be8e5c32a4cc93d30fff1b649486d84b.zip | |
Mod fallback Thumsizes list to match current preferences
| -rw-r--r-- | create_config_inc.php | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/create_config_inc.php b/create_config_inc.php index b8bee70..e005f22 100644 --- a/create_config_inc.php +++ b/create_config_inc.php @@ -183,11 +183,12 @@ define( 'BIT_ROOT_URL', '$bit_root_url' ); // that are used. You can add as many sizes as you want if you override the default. /* \$gThumbSizes = array( - 'icon' => array( 'width' => 48, 'height' => 48 ), - 'avatar' => array( 'width' => 100, 'height' => 100 ), - 'small' => array( 'width' => 160, 'height' => 120 ), - 'medium' => array( 'width' => 400, 'height' => 300 ), - 'large' => array( 'width' => 800, 'height' => 600 ), + 'extra-large' => array( 'width' => 1024, 'height' => 1024 ), + 'large' => array( 'width' => 800, 'height' => 800 ), + 'medium' => array( 'width' => 400, 'height' => 400 ), + 'small' => array( 'width' => 160, 'height' => 160 ), + 'avatar' => array( 'width' => 100, 'height' => 100 ), + 'icon' => array( 'width' => 48, 'height' => 48 ), ); */"; |
