Make WordPress Core


Ignore:
Timestamp:
12/26/2009 04:53:17 PM (15 years ago)
Author:
westi
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/link-template.php

    r12532 r12548  
    702702    default :
    703703        if ( !current_user_can( 'edit_post', $post->ID ) )
    704             return apply_filters( 'get_edit_post_link', '', $post->ID, $context );;
     704            return apply_filters( 'get_edit_post_link', '', $post->ID, $context );
    705705        $file = 'post';
    706706        $var  = 'post';
     
    778778    default :
    779779        if ( !current_user_can( 'edit_post', $post->ID ) )
    780             return apply_filters( 'get_delete_post_link', '', $post->ID, $context );;
     780            return apply_filters( 'get_delete_post_link', '', $post->ID, $context );
    781781        $file = 'post';
    782782        $var  = 'post';
Note: See TracChangeset for help on using the changeset viewer.