'Add Link' when adding new link. fixes #8465

git-svn-id: http://svn.automattic.com/wordpress/trunk@10015 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-12-02 19:52:12 +00:00
parent b35f4bf519
commit 496ef46dae
1 changed files with 4 additions and 0 deletions

View File

@ -92,7 +92,11 @@ if ( !empty($_GET['action']) && 'edit' == $_GET['action'] && current_user_can('m
</div>
<div id="publishing-action">
<?php if ( !empty($link->link_id) ) { ?>
<input name="save" type="submit" class="button-primary" id="publish" tabindex="4" accesskey="p" value="<?php _e('Update Link') ?>" />
<?php } else { ?>
<input name="save" type="submit" class="button-primary" id="publish" tabindex="4" accesskey="p" value="<?php _e('Add Link') ?>" />
<?php } ?>
</div>
<div class="clear"></div>
</div>