]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
fixes: blog title encoding issue
authorJerome Bakker <jeabakker@coldtrick.com>
Tue, 12 Jun 2012 07:29:49 +0000 (09:29 +0200)
committerJerome Bakker <jeabakker@coldtrick.com>
Tue, 12 Jun 2012 07:29:49 +0000 (09:29 +0200)
mod/blog/lib/blog.php

index 286fe1832802b5414101f058a52457166f4bcd72..e0b09f8971793b14d3be1d9d16b1c36331e1249f 100644 (file)
@@ -26,7 +26,7 @@ function blog_get_page_content_read($guid = NULL) {
                return $return;
        }
 
-       $return['title'] = htmlspecialchars($blog->title);
+       $return['title'] = $blog->title;
 
        $container = $blog->getContainerEntity();
        $crumbs_title = $container->name;