Swap out ;; for ;. Fixes #11618 props demetris and nacin.

git-svn-id: http://svn.automattic.com/wordpress/trunk@12548 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
westi
2009-12-26 16:53:17 +00:00
parent f419654041
commit 17c7533b72
3 changed files with 4 additions and 4 deletions

View File

@@ -701,7 +701,7 @@ function get_edit_post_link( $id = 0, $context = 'display' ) {
break;
default :
if ( !current_user_can( 'edit_post', $post->ID ) )
return apply_filters( 'get_edit_post_link', '', $post->ID, $context );;
return apply_filters( 'get_edit_post_link', '', $post->ID, $context );
$file = 'post';
$var = 'post';
break;
@@ -777,7 +777,7 @@ function get_delete_post_link($id = 0, $context = 'display') {
break;
default :
if ( !current_user_can( 'edit_post', $post->ID ) )
return apply_filters( 'get_delete_post_link', '', $post->ID, $context );;
return apply_filters( 'get_delete_post_link', '', $post->ID, $context );
$file = 'post';
$var = 'post';
break;