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

git-svn-id: https://develop.svn.wordpress.org/trunk@10015 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2008-12-02 19:52:12 +00:00
parent 04ac8afac0
commit 0b6046d9fd
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>