Make WordPress Core


Ignore:
Timestamp:
03/11/2005 03:41:04 AM (21 years ago)
Author:
ryan
Message:

Mark strings for translation. http://mosquito.wordpress.org/view.php?id=1033 Hat tip: slebog

File:
1 edited

Legend:

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

    r2430 r2432  
    13981398    $theme = $name;
    13991399    if ('' != $theme_uri[1] && '' != $name) {
    1400         $theme = __("<a href='{$theme_uri[1]}' title='Visit theme homepage'>{$theme}</a>");
     1400        $theme = '<a href="' . $theme_uri[1] . '" title="' . __('Visit theme homepage') . '">' . $theme . '</a>';
    14011401    }
    14021402
     
    14041404        $author = $author_name[1];
    14051405    } else {
    1406         $author = __("<a href='{$author_uri[1]}' title='Visit author homepage'>{$author_name[1]}</a>");
     1406        $author = '<a href="' . $author_uri[1] . '" title="' . __('Visit author homepage') . '">' . $author_name[1] . '</a>';
    14071407    }
    14081408
Note: See TracChangeset for help on using the changeset viewer.