]> git.mxchange.org Git - friendica.git/blobdiff - mod/update_notes.php
Merge develop into 3011_hcard_vcard
[friendica.git] / mod / update_notes.php
index 90cc5bc69c9e85d4a06bb4a3742f49222aa5bf75..6b8fff5115aa56ba62fbb70b60b330b5b3a70f74 100644 (file)
@@ -16,11 +16,7 @@ function update_notes_content(&$a) {
        header("Content-type: text/html");
        echo "<!DOCTYPE html><html><body>\r\n";
 
-       /**
-        * We can remove this hack once Internet Explorer recognises HTML5 natively
-        */
-
-       echo (($_GET['msie'] == 1) ? '<div>' : '<section>');
+       echo "<section>";
 
        /**
         *
@@ -53,7 +49,7 @@ function update_notes_content(&$a) {
         */
 
        echo str_replace("\t",'       ',$text);
-       echo (($_GET['msie'] == 1) ? '</div>' : '</section>');
+       echo "</section>";
        echo "</body></html>\r\n";
        killme();