Fix for Limit Number of Attached Files to 10

  1. //REMOVE FILES IF MORE THAN 10 ATTACHED, REMOVE LAST ATTACHED
  2.  
  3. //IN FORM SUBMIT HOOK....
  4.  
  5. if(count($form_values['files'] > 10)){
  6.         $i = 1;
  7.         foreach($form_values['files'] as $key => $file){
  8.                 if($i > 10){
  9.                         $form_values['files'][$key]['remove'] = 1;
  10.                 }
  11.                 $i++;
  12.         }
  13. }

Submit Fix

Any tags you'd like to associate with your code, delimitered by commas (example: Views, CCK, Module, etc).
Select the syntax highlighting mode to use.