]> git.mxchange.org Git - friendica.git/blobdiff - mod/update_display.php
Merge pull request #2135 from rabuzarus/doxygen
[friendica.git] / mod / update_display.php
index e10af08437d7df74bfcb8f7054c5889cc03d2fbd..25b0f7792663a6cfdb0748c1503253e281ec7e2d 100644 (file)
@@ -11,7 +11,7 @@ function update_display_content(&$a) {
 
        header("Content-type: text/html");
        echo "<!DOCTYPE html><html><body>\r\n";
-       echo (($_GET['msie'] == 1) ? '<div>' : '<section>');
+       echo "<section>";
 
 
        $text = display_content($a,$profile_uid);
@@ -31,7 +31,7 @@ function update_display_content(&$a) {
 
 
        echo str_replace("\t",'       ',$text);
-       echo (($_GET['msie'] == 1) ? '</div>' : '</section>');
+       echo "</section>";
        echo "</body></html>\r\n";
        killme();