whatever the cast is needed anyway lol

This commit is contained in:
Adam D. Ruppe 2011-11-29 11:49:59 -05:00
parent 7bb185151c
commit d40fd41194
1 changed files with 5 additions and 3 deletions

8
web.d
View File

@ -1005,10 +1005,8 @@ void run(Provider)(Cgi cgi, Provider instantiation, int pathInfoStartingPoint =
form = doc.requireSelector!Form("form");
} else {
Parameter[] params;
Parameter[] params = cast(Parameter[]) fun.parameters.dup;
foreach(i, p; fun.parameters) {
// ugh
params ~= cast(Parameter) p;
string value = "";
if(p.name in cgi.get)
value = cgi.get[p.name];
@ -1992,6 +1990,10 @@ string toUrlName(string name) {
/// turns camelCase into human presentable capitalized words with spaces
string beautify(string name) {
string n;
if(name.length == 0)
return name;
n ~= toUpper(name[0..1]);
dchar last;