diff options
author | Silvio <silvio@devlet.com.br> | 2011-11-21 14:06:06 -0200 |
---|---|---|
committer | Silvio <silvio@devlet.com.br> | 2011-11-21 14:06:06 -0200 |
commit | 4e6902f5c54d69c351d618a6d8c3273d3b35e3b5 (patch) | |
tree | 5be84393a696bb27d1fe21822a0286f4b836ce71 /imagecache_auto.admin.inc | |
parent | 97adf947afbf8ad31c0c31bc3b3f77098d3e8f4e (diff) | |
download | imagecache_auto-4e6902f5c54d69c351d618a6d8c3273d3b35e3b5.tar.gz imagecache_auto-4e6902f5c54d69c351d618a6d8c3273d3b35e3b5.tar.bz2 |
More coding standards
Diffstat (limited to 'imagecache_auto.admin.inc')
-rw-r--r-- | imagecache_auto.admin.inc | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/imagecache_auto.admin.inc b/imagecache_auto.admin.inc index c820c14..29b0fa7 100644 --- a/imagecache_auto.admin.inc +++ b/imagecache_auto.admin.inc @@ -1,8 +1,6 @@ <?php - /** * @file - * * Administration page callbacks. */ @@ -18,7 +16,7 @@ function imagecache_auto_admin_settings() { '#title' => t('Maximum preset width (pixels)'), '#default_value' => variable_get('imagecache_auto_max_width', '10000'), '#size' => 10, - '#maxlength' => 64, + '#maxlength' => 64, '#description' => t('The maximum width an automatically created ImageCache preset can have.'), ); @@ -27,7 +25,7 @@ function imagecache_auto_admin_settings() { '#title' => t('Maximum preset height (pixels)'), '#default_value' => variable_get('imagecache_auto_max_height', '10000'), '#size' => 10, - '#maxlength' => 64, + '#maxlength' => 64, '#description' => t('The maximum height an automatically created ImageCache preset can have.'), ); @@ -36,9 +34,10 @@ function imagecache_auto_admin_settings() { '#title' => t('Maximum number of presets'), '#default_value' => variable_get('imagecache_auto_max_presets', '250'), '#size' => 10, - '#maxlength' => 64, + '#maxlength' => 64, '#description' => t('The maximum number of total imagecache presets before ImageCache auto refuses to create additional presets. This might prevent abuses from malicious clients.'), ); return system_settings_form($form); } + |