]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
trac #569 and trac #711 add missing utf-8 headers and removed extraneous argument...
authorRobin Millette <millette@controlyourself.ca>
Mon, 2 Feb 2009 21:08:33 +0000 (21:08 +0000)
committerRobin Millette <millette@plantard.controlezvous.ca>
Mon, 2 Feb 2009 21:08:33 +0000 (21:08 +0000)
lib/clienterroraction.php
lib/servererroraction.php
lib/util.php

index ef6fd51dffc16f3dc5b4df82743c9bd460842a06..5019dc06deb7ec9bc18f8dd8a3d626be0fa02af9 100644 (file)
@@ -70,7 +70,7 @@ class ClientErrorAction extends ErrorAction
                                417 => 'Expectation Failed');
         $this->default = 400;
     }
-    
+
     // XXX: Should these error actions even be invokable via URI?
     
     function handle($args)
index a398865915fafe338634010e4fde50bb8f5b933e..80a3fdd7b408f39b487bc80282f1a684f1c3f5bd 100644 (file)
@@ -67,7 +67,7 @@ class ServerErrorAction extends ErrorAction
         
         $this->default = 500;
     }
-    
+
     // XXX: Should these error actions even be invokable via URI?
     
     function handle($args)
index 3690f0ad543bd4f9bcd01a0e7833c9622dcd3fda..3314cdfa0af03b4d6a1316ed985ccea61e489236 100644 (file)
@@ -1391,7 +1391,7 @@ function common_negotiate_type($cprefs, $sprefs)
     }
 
     $bestq = 0;
-    $besttype = "text/html";
+    $besttype = 'text/html';
 
     foreach(array_keys($combine) as $type) {
         if($combine[$type] > $bestq) {
@@ -1400,6 +1400,9 @@ function common_negotiate_type($cprefs, $sprefs)
         }
     }
 
+    if ('text/html' === $besttype) {
+        return "text/html; charset=utf-8";
+    }
     return $besttype;
 }