Roxen.git/
server/
config_interface/
sites/
add_module.pike
Branch:
Tag:
Non-build tags
All tags
No tags
2001-03-04
2001-03-04 07:01:41 by Per Hedbor <ph@opera.com>
94ebf5f0aa47b98d3766fb808d6a9ac3e6684167 (
7
lines) (+
5
/-
2
)
[
Show
|
Annotate
]
Branch:
5.2
More correct fix
Rev: server/config_interface/sites/add_module.pike:1.55
276:
{ return ""; }
-
string strip_leading(
string
what )
+
+
string strip_leading(
LocaleString
what )
{
-
sscanf( (string)
[mixed]
what, "%*s:%s", what );
+
if( !what ) return 0;
+
sscanf( (string)what, "%*s:%s", what );
return what; }