corrade-http-templates

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ HEAD  →  ?path2? @ 1
/instantMessage/installMessage.php
@@ -11,7 +11,7 @@
###########################################################################
 
require_once('config.php');
require_once('vendor/was/utilities/src/formats/kvp/kvp.php');
require_once('functions.php');
 
###########################################################################
## INTERNALS ##
@@ -32,7 +32,7 @@
# II. Escape the data to be sent to Corrade.
array_walk($params,
function(&$value, $key) {
$value = urlencode($key)."=".urlencode($value);
$value = rawurlencode($key)."=".rawurlencode($value);
}
);
$postvars = implode('&', $params);