projects/plugins/jetpack/class.jetpack.php 1 location
                
                
                    
                                                
                                                    
                                 | 
                                
                                    @@ 5355-5362 (lines=8) @@
                                 | 
                            
                                                            
                                    | 5352 | 
                                     | 
                                    	 *  | 
                                
                                                            
                                    | 5353 | 
                                     | 
                                    	 * @since 5.4  | 
                                
                                                            
                                    | 5354 | 
                                     | 
                                    	 **/  | 
                                
                                                            
                                    | 5355 | 
                                     | 
                                    	public static function set_min_time_limit( $min_timeout ) { | 
                                
                                                            
                                    | 5356 | 
                                     | 
                                    		$timeout = self::get_max_execution_time();  | 
                                
                                                            
                                    | 5357 | 
                                     | 
                                    		if ( $timeout < $min_timeout ) { | 
                                
                                                            
                                    | 5358 | 
                                     | 
                                    			$timeout = $min_timeout;  | 
                                
                                                            
                                    | 5359 | 
                                     | 
                                    			set_time_limit( $timeout );  | 
                                
                                                            
                                    | 5360 | 
                                     | 
                                    		}  | 
                                
                                                            
                                    | 5361 | 
                                     | 
                                    		return $timeout;  | 
                                
                                                            
                                    | 5362 | 
                                     | 
                                    	}  | 
                                
                                                            
                                    | 5363 | 
                                     | 
                                     | 
                                
                                                            
                                    | 5364 | 
                                     | 
                                    	/**  | 
                                
                                                            
                                    | 5365 | 
                                     | 
                                    	 * Takes the response from the Jetpack register new site endpoint and  | 
                                
                                                                        
                 
                                                            
                    
projects/packages/connection/src/class-manager.php 1 location
                
                
                    
                                                
                                                    
                                 | 
                                
                                    @@ 1149-1156 (lines=8) @@
                                 | 
                            
                                                            
                                    | 1146 | 
                                     | 
                                    	 * @since 5.4  | 
                                
                                                            
                                    | 1147 | 
                                     | 
                                    	 * @param Integer $min_timeout the minimum timeout value.  | 
                                
                                                            
                                    | 1148 | 
                                     | 
                                    	 **/  | 
                                
                                                            
                                    | 1149 | 
                                     | 
                                    	public function set_min_time_limit( $min_timeout ) { | 
                                
                                                            
                                    | 1150 | 
                                     | 
                                    		$timeout = $this->get_max_execution_time();  | 
                                
                                                            
                                    | 1151 | 
                                     | 
                                    		if ( $timeout < $min_timeout ) { | 
                                
                                                            
                                    | 1152 | 
                                     | 
                                    			$timeout = $min_timeout;  | 
                                
                                                            
                                    | 1153 | 
                                     | 
                                    			set_time_limit( $timeout );  | 
                                
                                                            
                                    | 1154 | 
                                     | 
                                    		}  | 
                                
                                                            
                                    | 1155 | 
                                     | 
                                    		return $timeout;  | 
                                
                                                            
                                    | 1156 | 
                                     | 
                                    	}  | 
                                
                                                            
                                    | 1157 | 
                                     | 
                                     | 
                                
                                                            
                                    | 1158 | 
                                     | 
                                    	/**  | 
                                
                                                            
                                    | 1159 | 
                                     | 
                                    	 * Get our assumed site creation date.  |