Remove HERE document. xgettext doesn't like it. http://mosquito.wordpress.org/view.php?id=1221 Props: nbachiyski
git-svn-id: http://svn.automattic.com/wordpress/trunk@2521 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
13ae8dd0bc
commit
6bd9d5a824
|
@ -675,11 +675,10 @@ function checkAll(form)
|
|||
$visible = ($link->link_visible == 'Y') ? __('Yes') : __('No');
|
||||
++$i;
|
||||
$style = ($i % 2) ? ' class="alternate"' : '';
|
||||
echo <<<LINKS
|
||||
|
||||
<tr valign="middle" $style>
|
||||
<td><strong>$link->link_name</strong><br />
|
||||
LINKS;
|
||||
?>
|
||||
<tr valign="middle" <?php echo $style; ?>>
|
||||
<td><strong><?php echo $link->link_name; ?></strong><br />
|
||||
<?php
|
||||
echo sprintf(__('Description: %s'), $link->link_description) . "</td>";
|
||||
echo "<td><a href=\"$link->link_url\" title=\"" . sprintf(__('Visit %s'), $link->link_name) . "\">$short_url</a></td>";
|
||||
echo <<<LINKS
|
||||
|
@ -753,4 +752,4 @@ LINKS;
|
|||
} // end case
|
||||
?>
|
||||
|
||||
<?php include('admin-footer.php'); ?>
|
||||
<?php include('admin-footer.php'); ?>
|
||||
|
|
Loading…
Reference in New Issue