From 0e6e4baefc0cd26910f9f27a97b2e60ede15a12c Mon Sep 17 00:00:00 2001 From: ryan Date: Thu, 8 Mar 2007 01:21:29 +0000 Subject: [PATCH] Add bracket. Props flinkflonk. fixes #3921 git-svn-id: http://svn.automattic.com/wordpress/trunk@5000 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- app.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.php b/app.php index e80ebd036..08fd3d106 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, "");