diff --git a/src/wp-admin/includes/ajax-actions.php b/src/wp-admin/includes/ajax-actions.php
index 75d7a61000..e7619f2a1b 100644
|
a
|
b
|
function wp_ajax_get_revision_diffs() { |
| 3558 | 3558 | |
| 3559 | 3559 | // Removes the script timeout limit by setting it to 0 allowing ample time for diff UI setup. |
| 3560 | 3560 | if ( function_exists( 'set_time_limit' ) ) { |
| 3561 | | set_time_limit( 0 ); |
| | 3561 | set_time_limit( 120 ); |
| 3562 | 3562 | } |
| 3563 | 3563 | |
| 3564 | 3564 | foreach ( $_REQUEST['compare'] as $compare_key ) { |
diff --git a/src/wp-includes/class-pop3.php b/src/wp-includes/class-pop3.php
index b4eab75044..50b43dc3b5 100644
|
a
|
b
|
class POP3 { |
| 47 | 47 | /** |
| 48 | 48 | * PHP5 constructor. |
| 49 | 49 | */ |
| 50 | | function __construct ( $server = '', $timeout = '' ) { |
| | 50 | function __construct ( $server = '', $timeout = 120 ) { |
| 51 | 51 | settype($this->BUFFER,"integer"); |
| 52 | 52 | if( !empty($server) ) { |
| 53 | 53 | // Do not allow programs to alter MAILSERVER |