corrade-http-templates

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 71  →  ?path2? @ 82
/groupChat/installGroup.php
@@ -33,7 +33,7 @@
# II. Escape the data to be sent to Corrade.
array_walk($params,
function(&$value, $key) {
$value = rawurlencode($key)."=".rawurlencode($value);
$value = urlencode($key)."=".urlencode($value);
}
);
$postvars = implode('&', $params);
/groupChat/sendGroupMessage.php
@@ -45,7 +45,7 @@
# II. Escape the data to be sent to Corrade.
array_walk($params,
function(&$value, $key) {
$value = rawurlencode($key)."=".rawurlencode($value);
$value = urlencode($key)."=".urlencode($value);
}
);
$postvars = implode('&', $params);