Ticket #13237: alot.patch
File alot.patch, 7.0 KB (added by , 14 years ago) |
---|
-
wp-admin/import/livejournal.php
220 220 221 221 </table> 222 222 223 <p><?php _e( "<strong>WARNING:</strong> This can take a really long time if you have a lot of entries in your LiveJournal, or alot of comments. Ideally, you should only start this process if you can leave your computer alone while it finishes the import." ) ?></p>223 <p><?php _e( "<strong>WARNING:</strong> This can take a really long time if you have alot of entries in your LiveJournal, or alot of comments. Ideally, you should only start this process if you can leave your computer alone while it finishes the import." ) ?></p> 224 224 225 225 <p class="submit"> 226 226 <input type="submit" class="button" value="<?php esc_attr_e( 'Connect to LiveJournal and Import' ) ?>" /> -
wp-admin/includes/file.php
520 520 if ( ! $wp_filesystem || !is_object($wp_filesystem) ) 521 521 return new WP_Error('fs_unavailable', __('Could not access filesystem.')); 522 522 523 // Unzip can use a 523 // Unzip can use alot of memory, but not this much hopefully 524 524 @ini_set('memory_limit', '256M'); 525 525 526 526 $needed_dirs = array(); -
wp-admin/install-helper.php
7 7 * 8 8 * These functions are not optimized for speed, but they should only be used 9 9 * once in a while, so speed shouldn't be a concern. If it is and you are 10 * needing to use these functions a 10 * needing to use these functions alot, you might experience time outs. If you 11 11 * do, then it is advised to just write the SQL code yourself. 12 12 * 13 13 * You can turn debugging on, by setting $debug to 1 after you include this -
wp-includes/class-http.php
1113 1113 * HTTP request method uses HTTP extension to retrieve the url. 1114 1114 * 1115 1115 * Requires the HTTP extension to be installed. This would be the preferred transport since it can 1116 * handle a 1116 * handle alot of the problems that forces the others to use the HTTP version 1.0. Even if PHP 5.2+ 1117 1117 * is being used, it doesn't mean that the HTTP extension will be enabled. 1118 1118 * 1119 1119 * @package WordPress -
wp-includes/formatting.php
379 379 return ''; 380 380 } 381 381 382 // Don't bother if there are no entities - saves a 382 // Don't bother if there are no entities - saves alot of processing 383 383 if ( strpos( $string, '&' ) === false ) { 384 384 return $string; 385 385 } -
wp-includes/kses.php
459 459 /** 460 460 * Callback for wp_kses_split for fixing malformed HTML tags. 461 461 * 462 * This function does a 462 * This function does alot of work. It rejects some very malformed things like 463 463 * <:::>. It returns an empty string, if the element isn't allowed (look ma, no 464 464 * strip_tags()!). Otherwise it splits the tag into an element and an attribute 465 465 * list. … … 604 604 /** 605 605 * Builds an attribute list from string containing attributes. 606 606 * 607 * This function does a 607 * This function does alot of work. It parses an attribute list into an array 608 608 * with attribute data, and tries to do the right thing even if it gets weird 609 609 * input. It will add quotes around attribute values that don't have any quotes 610 610 * or apostrophes around them, to make it easier to produce HTML code that will -
wp-includes/plugin.php
12 12 * type are valid. 13 13 * 14 14 * Also see the {@link http://codex.wordpress.org/Plugin_API Plugin API} for 15 * more information and examples on how to use a 15 * more information and examples on how to use alot of these functions. 16 16 * 17 17 * @package WordPress 18 18 * @subpackage Plugin -
wp-includes/post.php
1437 1437 * 1438 1438 * This function provides an efficient method of finding the amount of post's 1439 1439 * type a blog has. Another method is to count the amount of items in 1440 * get_posts(), but that method has a 1440 * get_posts(), but that method has alot of overhead with doing so. Therefore, 1441 1441 * when developing for 2.5+, use this function instead. 1442 1442 * 1443 1443 * The $perm parameter checks for 'readable' value and if the user can read -
wp-includes/rewrite.php
613 613 /** 614 614 * Whether to write every mod_rewrite rule for WordPress. 615 615 * 616 * This is off by default, turning it on might print a 616 * This is off by default, turning it on might print alot of rewrite rules 617 617 * to the .htaccess file. 618 618 * 619 619 * @since 2.0.0 … … 1493 1493 //allow URLs like <permalink>/2 for <permalink>/page/2 1494 1494 $match = $match . '(/[0-9]+)?/?$'; 1495 1495 $query = $index . '?' . $query . '&page=' . $this->preg_index($num_toks + 1); 1496 } else { //not matching a permalink so this is a 1496 } else { //not matching a permalink so this is alot simpler 1497 1497 //close the match and finalise the query 1498 1498 $match .= '?$'; 1499 1499 $query = $index . '?' . $query; -
wp-includes/taxonomy.php
2106 2106 * 2107 2107 * It should be noted that update_object_term_cache() is very time extensive. It 2108 2108 * is advised that the function is not called very often or at least not for a 2109 * lot of terms that exist in a 2109 * lot of terms that exist in alot of taxonomies. The amount of time increases 2110 2110 * for each term and it also increases for each taxonomy the term belongs to. 2111 2111 * 2112 2112 * @package WordPress