Excerpt fix from Mike Little. fixes #2686
git-svn-id: http://svn.automattic.com/wordpress/trunk@3785 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
102b85a9a1
commit
e0939f1323
|
@ -197,7 +197,7 @@ class MT_Import {
|
|||
|
||||
// We want the excerpt
|
||||
preg_match("|-----\nEXCERPT:(.*)|s", $post, $excerpt);
|
||||
$excerpt = $wpdb->escape(trim($excerpt[1]));
|
||||
$post_excerpt = $wpdb->escape(trim($excerpt[1]));
|
||||
$post = preg_replace("|(-----\nEXCERPT:.*)|s", '', $post);
|
||||
|
||||
// We're going to put extended body into main body with a more tag
|
||||
|
|
Loading…
Reference in New Issue