Make WordPress Core


Ignore:
Timestamp:
01/19/2006 12:21:42 AM (19 years ago)
Author:
ryan
Message:

8 not 7. fixes #2283

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/functions.php

    r3459 r3464  
    926926        $link_text = $matches[4][$i];
    927927        $content = str_replace($link_match, $link_text.' '.$link_number, $content);
    928         $link_url = ((strtolower(substr($link_url,0,7)) != 'http://') && (strtolower(substr($link_url,0,7)) != 'https://')) ? get_settings('home') . $link_url : $link_url;
     928        $link_url = ((strtolower(substr($link_url,0,7)) != 'http://') && (strtolower(substr($link_url,0,8)) != 'https://')) ? get_settings('home') . $link_url : $link_url;
    929929        $links_summary .= "\n".$link_number.' '.$link_url;
    930930    }
Note: See TracChangeset for help on using the changeset viewer.