diff options
author | webchick <webchick@24967.no-reply.drupal.org> | 2011-12-10 23:53:03 -0600 |
---|---|---|
committer | webchick <webchick@24967.no-reply.drupal.org> | 2011-12-10 23:53:03 -0600 |
commit | a2588037892138ab71f6249816fd3c909fa2ee3d (patch) | |
tree | eb49acf96ce9d222c1d0f3c73caa0e1fdd2f82b4 /modules | |
parent | ad0423550cc27a7e2b8e1388a74c99348b5dc486 (diff) | |
download | brdo-a2588037892138ab71f6249816fd3c909fa2ee3d.tar.gz brdo-a2588037892138ab71f6249816fd3c909fa2ee3d.tar.bz2 |
Issue #1346760 by xjm: Fixed Drag and drop needs a scalable weight select element.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/system/system.module | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index d0a542efb..46ec87db1 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -46,6 +46,13 @@ define('DRUPAL_OPTIONAL', 1); define('DRUPAL_REQUIRED', 2); /** + * Maximum number of values in a weight select element. + * + * If the number of values is over the maximum, a text field is used instead. + */ +define('DRUPAL_WEIGHT_SELECT_MAX', 100); + +/** * Return only visible regions. * * @see system_region_list() |