Explorar el Código

[ZF-7201] Zend_File_Transfer:

 - fixed typo preventing double called validation

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@16542 44c647ce-9c0f-0410-b52a-842ac1e357ba
thomas hace 16 años
padre
commit
d8320ac8dd
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      library/Zend/File/Transfer/Adapter/Abstract.php

+ 1 - 1
library/Zend/File/Transfer/Adapter/Abstract.php

@@ -616,7 +616,7 @@ abstract class Zend_File_Transfer_Adapter_Abstract
 
         foreach ($check as $key => $content) {
             $fileerrors  = array();
-            if (array_key_exists('validator', $content) && $content['validated']) {
+            if (array_key_exists('validators', $content) && $content['validated']) {
                 continue;
             }