Make WordPress Core

Ticket #2381: x_multiplication_fix.diff

File x_multiplication_fix.diff, 571 bytes (added by markjaquith, 19 years ago)

X multiplication fix

  • wp-includes/template-functions-general.php

     
    6262
    6363function bloginfo($show='') {
    6464        $info = get_bloginfo($show);
    65         if ( ! (strstr($info, 'url') || strstr($info, 'directory')) ) {
     65        if ( ! (strstr($info, 'url') || strstr($info, 'directory') || strstr($info, 'home')) ) {
    6666                $info = apply_filters('bloginfo', $info, $show);
    6767                $info = convert_chars($info);
    6868        }