Make WordPress Core

Changeset 12548


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

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

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/class-ftp.php

    r12387 r12548  
    496496        foreach($f as $k=>$v) {
    497497            $v=explode(" ", trim($v));
    498             $this->_features[array_shift($v)]=$v;;
     498            $this->_features[array_shift($v)]=$v;
    499499        }
    500500        return true;
  • 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';
  • trunk/wp-includes/pomo/po.php

    r12079 r12548  
    255255                }
    256256                // add comment
    257                 $this->add_comment_to_entry($entry, $line);;
     257                $this->add_comment_to_entry($entry, $line);
    258258            } elseif (preg_match('/^msgctxt\s+(".*")/', $line, $m)) {
    259259                if ($is_final($context)) {
Note: See TracChangeset for help on using the changeset viewer.