Welcome Guest, Not a member yet? Register   Sign In
Problems with the new Form Validation library
#3

[eluser]xwero[/eluser]
1. you can check if the right configuration is passed on to the run method when you do
Code:
print_r($this->form_validation->_field_data);

2. It's not a bug it is to reduce the checking of files which is better for performance. If you allow a capitalized first letter of the name or a lowercased name you have to do something like
Code:
$filename_array = array(strtolower($filename),ucfirst(strtolower($filename));
$actual_filename = '';

foreach($filename_array as $test)
{
   if(is_file($test))
   {
      $actual_filename = $test;
      break;
   }
}

if(empty($actual_filename))
{
   return;
}
instead of
Code:
$filename = ucfirst(strtolower($filename);

if( ! is_file($filename))
{
   return;
}


Messages In This Thread
Problems with the new Form Validation library - by El Forum - 10-19-2008, 09:43 AM
Problems with the new Form Validation library - by El Forum - 10-20-2008, 01:54 AM
Problems with the new Form Validation library - by El Forum - 10-20-2008, 03:00 AM
Problems with the new Form Validation library - by El Forum - 10-20-2008, 05:22 AM
Problems with the new Form Validation library - by El Forum - 10-20-2008, 05:44 AM
Problems with the new Form Validation library - by El Forum - 10-20-2008, 06:04 AM
Problems with the new Form Validation library - by El Forum - 10-20-2008, 06:23 AM
Problems with the new Form Validation library - by El Forum - 10-20-2008, 06:28 AM
Problems with the new Form Validation library - by El Forum - 10-20-2008, 06:30 AM
Problems with the new Form Validation library - by El Forum - 10-20-2008, 06:45 AM
Problems with the new Form Validation library - by El Forum - 10-20-2008, 06:58 AM
Problems with the new Form Validation library - by El Forum - 10-20-2008, 07:07 AM
Problems with the new Form Validation library - by El Forum - 10-20-2008, 07:21 AM
Problems with the new Form Validation library - by El Forum - 10-20-2008, 01:40 PM
Problems with the new Form Validation library - by El Forum - 10-20-2008, 02:32 PM



Theme © iAndrew 2016 - Forum software by © MyBB