Don't output <br /> for empty posts, props Denis-de-Bernardy, fixes #6128

git-svn-id: https://develop.svn.wordpress.org/trunk@11048 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2009-04-22 07:37:24 +00:00
parent c23db792be
commit 27cf3f2991
1 changed files with 2 additions and 0 deletions

View File

@ -114,6 +114,8 @@ function clean_pre($matches) {
* @return string Text which has been converted into correct paragraph tags.
*/
function wpautop($pee, $br = 1) {
if ( trim($pee) === '' )
return '';
$pee = $pee . "\n"; // just to make things a little easier, pad the end
$pee = preg_replace('|<br />\s*<br />|', "\n\n", $pee);
// Space things out a little