search_files_helper_path has maxlength of 100, its too short
markDrupal - May 5, 2009 - 20:36
| Project: | Search Files |
| Version: | 6.x-6.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | thl |
| Status: | closed |
Jump to:
Description
I can't put my full path to helper program because the max length is set at 100 in search_files.module line 190
$form['search_files_helper_path'] = array(
'#type' => 'textfield',
'#title' => t('Helper path'),
'#size' => 100,
'#maxlength' => 100,Is there a limitation of 100 characters? why not 256 or no limit?

#1
The limit is also in the database schema, which needs to be fixed, too.
#2
fixed, see
search_files.install revision 1.10.2.12
search_files.module revision 1.19.2.17
#3