From 0472e6cad4d2c68b0831caa9eeea582f0f297027 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Mon, 12 Nov 2012 20:19:07 +0000 Subject: [PATCH 1/1] Only call force_encoding on ruby 1.9 --- lib/potlatch.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/potlatch.rb b/lib/potlatch.rb index 35a60dfbb..359492fa7 100644 --- a/lib/potlatch.rb +++ b/lib/potlatch.rb @@ -107,7 +107,7 @@ module Potlatch # Encode string with two-byte length def self.encodestring(n) - n=n.dup.force_encoding("ASCII-8BIT") + n=n.dup.force_encoding("ASCII-8BIT") if n.respond_to?("force_encoding") a,b=n.size.divmod(256) a.chr+b.chr+n end -- 2.43.2