]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/js/heartbeat.js
WordPress 4.7
[autoinstalls/wordpress.git] / wp-includes / js / heartbeat.js
index 9867ceb1d6f9b901f0dcdeecf74e2e815fcd3ea5..6c5e8d151b71bb0650558e077d1ac7fdb5a3ac9c 100644 (file)
                                // Needed for some hosts that cannot handle frequent requests and the user may exceed the allocated server CPU time, etc.
                                // The minimal interval can be up to 600 sec. however setting it to longer than 120 sec. will limit or disable
                                // some of the functionality (like post locks).
-                               // Once set at initialization, minimalInterval cannot be changed/overriden.
+                               // Once set at initialization, minimalInterval cannot be changed/overridden.
                                if ( options.minimalInterval ) {
                                        options.minimalInterval = parseInt( options.minimalInterval, 10 );
                                        settings.minimalInterval = options.minimalInterval > 0 && options.minimalInterval <= 600 ? options.minimalInterval * 1000 : 0;