diff options
author | Cash Costello <cash.costello@gmail.com> | 2010-05-01 19:24:58 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2010-05-01 19:24:58 +0000 |
commit | 994774afb56e3474b84a15c16f8e36b7f0457fcb (patch) | |
tree | 246611e936855af97dc8916837349a5b4e7ad75e /actions | |
parent | 8e5a221350d2fb1425ce76387d0ff1b4e9122dd9 (diff) | |
download | elgg-994774afb56e3474b84a15c16f8e36b7f0457fcb.tar.gz elgg-994774afb56e3474b84a15c16f8e36b7f0457fcb.tar.bz2 |
Users cannot change the 2 smallest thumbnails from square now - less confusing interface
Diffstat (limited to 'actions')
-rw-r--r-- | actions/settings.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/actions/settings.php b/actions/settings.php index e16e7960e..a4f102b89 100644 --- a/actions/settings.php +++ b/actions/settings.php @@ -57,9 +57,11 @@ $image_sizes['large_image_width'] = get_input('large_thumb_width'); $image_sizes['large_image_height'] = get_input('large_thumb_height'); $image_sizes['small_image_width'] = get_input('small_thumb_width'); - $image_sizes['small_image_height'] = get_input('small_thumb_height'); + //$image_sizes['small_image_height'] = get_input('small_thumb_height'); + $image_sizes['small_image_height'] = get_input('small_thumb_width'); $image_sizes['thumb_image_width'] = get_input('thumb_width'); - $image_sizes['thumb_image_height'] = get_input('thumb_height'); + //$image_sizes['thumb_image_height'] = get_input('thumb_height'); + $image_sizes['thumb_image_height'] = get_input('thumb_width'); set_plugin_setting('image_sizes', serialize($image_sizes), 'tidypics'); |