Ticket #11618: t11618-stray-double-semicolons.diff
| File t11618-stray-double-semicolons.diff, 1.3 KB (added by demetris, 3 years ago) |
|---|
-
wp-includes/link-template.php
701 701 break; 702 702 default : 703 703 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 ); 705 705 $file = 'post'; 706 706 $var = 'post'; 707 707 break; … … 777 777 break; 778 778 default : 779 779 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 ); 781 781 $file = 'post'; 782 782 $var = 'post'; 783 783 break; -
wp-includes/pomo/po.php
254 254 return false; 255 255 } 256 256 // add comment 257 $this->add_comment_to_entry($entry, $line); ;257 $this->add_comment_to_entry($entry, $line); 258 258 } elseif (preg_match('/^msgctxt\s+(".*")/', $line, $m)) { 259 259 if ($is_final($context)) { 260 260 PO::read_line($f, 'put-back');
