]> git.mxchange.org Git - friendica.git/blobdiff - mod/update_community.php
Merge develop into 3011_hcard_vcard
[friendica.git] / mod / update_community.php
index 3dcbce6b1f091cf3bd4c9d02082d486baa084616..512629b0052955fe647aa4b6f8678ee72eadccad 100644 (file)
@@ -8,7 +8,7 @@ function update_community_content(&$a) {
 
        header("Content-type: text/html");
        echo "<!DOCTYPE html><html><body>\r\n";
-       echo (($_GET['msie'] == 1) ? '<div>' : '<section>');
+       echo "<section>";
 
         $text = community_content($a,true);
         $pattern = "/<img([^>]*) src=\"([^\"]*)\"/";
@@ -26,7 +26,7 @@ function update_community_content(&$a) {
         $text = preg_replace($pattern, $replace, $text);
 
         echo str_replace("\t",'       ',$text);
-       echo (($_GET['msie'] == 1) ? '</div>' : '</section>');
+       echo "</section>";
        echo "</body></html>\r\n";
        killme();