Ticket #12595: mt-import-max-execution-time-fix.0.patch
File mt-import-max-execution-time-fix.0.patch, 580 bytes (added by , 15 years ago) |
---|
-
wp-admin/import/mt.php
241 241 242 242 function save_post(&$post, &$comments, &$pings) { 243 243 // Reset the counter 244 set_time_limit(30); 244 $max_execution_time = ini_get('max_execution_time'); 245 if ( $max_execution_time == '' ) { 246 set_time_limit(30); 247 } else { 248 set_time_limit($max_execution_time); 249 } 245 250 $post = get_object_vars($post); 246 251 $post = add_magic_quotes($post); 247 252 $post = (object) $post;