Changeset 28823
- Timestamp:
- 06/24/2014 04:05:54 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/update.php
r28805 r28823 269 269 } else { 270 270 // Three seconds, plus one extra second for every 10 plugins 271 $timeout = 3 + intval( count( $plugins ) / 10 );271 $timeout = 3 + (int) ( count( $plugins ) / 10 ); 272 272 } 273 273 … … 424 424 } else { 425 425 // Three seconds, plus one extra second for every 10 themes 426 $timeout = 3 + intval( count( $themes ) / 10 );426 $timeout = 3 + (int) ( count( $themes ) / 10 ); 427 427 } 428 428
Note: See TracChangeset
for help on using the changeset viewer.