From 52e761f2df175363c298899cd2e086f873eaba93 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Thu, 8 Mar 2007 01:21:29 +0000 Subject: [PATCH] Add bracket. Props flinkflonk. fixes #3921 git-svn-id: https://develop.svn.wordpress.org/trunk@5000 602fd350-edb4-49c9-b593-d223f7449a82 --- app.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.php b/app.php index e80ebd0361..08fd3d1061 100644 --- a/app.php +++ b/app.php @@ -192,7 +192,7 @@ class AtomParser { $this->in_content = array(); } else { $endtag = $this->ns_to_prefix($name); - if (strpos($this->in_content[count($this->in_content)-1], '<' . $endtag) !== false) + if (strpos($this->in_content[count($this->in_content)-1], '<' . $endtag) !== false) { array_push($this->in_content, "/>"); } else { array_push($this->in_content, "");