Changeset 2432
- Timestamp:
- 03/11/2005 03:41:04 AM (20 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/admin-functions.php
r2429 r2432 975 975 $plugin = $name; 976 976 if ('' != $plugin_uri[1] && '' != $name) { 977 $plugin = __("<a href='{$plugin_uri[1]}' title='Visit plugin homepage'>{$plugin}</a>");977 $plugin = '<a href="' . $plugin_uri[1] . '" title="' . __('Visit plugin homepage') . '">' . $plugin . '</a>'; 978 978 } 979 979 … … 981 981 $author = $author_name[1]; 982 982 } else { 983 $author = __("<a href='{$author_uri[1]}' title='Visit author homepage'>{$author_name[1]}</a>");983 $author = '<a href="' . $author_uri[1] . '" title="' . __('Visit author homepage') . '">' . $author_name[1] . '</a>'; 984 984 } 985 985 -
trunk/wp-admin/link-categories.php
r2377 r2432 339 339 <td><?php echo wp_specialchars($row->cat_name)?></td> 340 340 <td ><?php echo $row->cat_id?></td> 341 <td><?php echo $row->auto_toggle == 'Y' ? __('Y ') : __('N') ?></td>342 <td><?php echo $row->show_images == 'Y' ? __('Y ') : __('N') ?></td>343 <td><?php echo $row->show_description == 'Y' ? __('Y ') : __('N') ?></td>344 <td><?php echo $row->show_rating == 'Y' ? __('Y ') : __('N') ?></td>345 <td><?php echo $row->show_updated == 'Y' ? __('Y ') : __('N') ?></td>341 <td><?php echo $row->auto_toggle == 'Y' ? __('Yes') : __('No') ?></td> 342 <td><?php echo $row->show_images == 'Y' ? __('Yes') : __('No') ?></td> 343 <td><?php echo $row->show_description == 'Y' ? __('Yes') : __('No') ?></td> 344 <td><?php echo $row->show_rating == 'Y' ? __('Yes') : __('No') ?></td> 345 <td><?php echo $row->show_updated == 'Y' ? __('Yes') : __('No') ?></td> 346 346 <td><?php echo $row->sort_order ?></td> 347 <td><?php echo $row->sort_desc == 'Y' ? __('Y ') : __('N') ?></td>347 <td><?php echo $row->sort_desc == 'Y' ? __('Yes') : __('No') ?></td> 348 348 <td nowrap="nowrap"><?php echo htmlentities($row->text_before_link)?> </td> 349 349 <td nowrap="nowrap"><?php echo htmlentities($row->text_after_link)?> </td> -
trunk/wp-includes/functions.php
r2430 r2432 1398 1398 $theme = $name; 1399 1399 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>'; 1401 1401 } 1402 1402 … … 1404 1404 $author = $author_name[1]; 1405 1405 } 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>'; 1407 1407 } 1408 1408
Note: See TracChangeset
for help on using the changeset viewer.