예제 #1
0
 /**
  * Make sure newly uploaded images are within the site's max-size setting
  *
  */
 function MaxSize($added)
 {
     global $config;
     foreach ($added as $file) {
         thumbnail::CheckArea($file['realpath'], $config['maximgarea']);
     }
 }