Roxen.git/
server/
modules/
filesystems/
filesystem.pike
Branch:
Tag:
Non-build tags
All tags
No tags
2015-04-28
2015-04-28 15:04:04 by Jonas Walldén <jonasw@roxen.com>
50aa167af28d7ff5a9f773c39d6456a310bcb813 (
3
lines) (+
2
/-
1
)
[
Show
|
Annotate
]
Branch:
devel
Avoid Pike 8 compat types.
404:
string decode_path( string p ) { if( path_encoding != "iso-8859-1" )
-
p =
Locale.
Charset.encoder( path_encoding )->feed( p )->drain();
+
p = Charset.encoder( path_encoding )->feed( p )->drain();
#ifndef __NT__ if( String.width( p ) != 8 ) p = string_to_utf8( p );