]> git.openstreetmap.org Git - rails.git/blobdiff - lib/potlatch.rb
Update some print styles for Leaflet
[rails.git] / lib / potlatch.rb
index 919eb0122986fe5ac923e519c6a9aeb3934af713..35a60dfbb6b2d2757d7b2a24d29842e32077c4ec 100644 (file)
@@ -106,7 +106,8 @@ module Potlatch
     end
 
     # Encode string with two-byte length
     end
 
     # Encode string with two-byte length
-    def self.encodestring(n) 
+    def self.encodestring(n)
+      n=n.dup.force_encoding("ASCII-8BIT")
       a,b=n.size.divmod(256)
       a.chr+b.chr+n
     end
       a,b=n.size.divmod(256)
       a.chr+b.chr+n
     end