corrade-http-templates

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 81  →  ?path2? @ 82
/inventoryBrowser/moveInventoryItem.php
@@ -97,7 +97,7 @@
);
array_walk($params,
function(&$value, $key) {
$value = rawurlencode($key)."=".rawurlencode($value);
$value = urlencode($key)."=".urlencode($value);
}
);
$postvars = implode('&', $params);
@@ -188,7 +188,7 @@
);
array_walk($params,
function(&$value, $key) {
$value = rawurlencode($key)."=".rawurlencode($value);
$value = urlencode($key)."=".urlencode($value);
}
);
$postvars = implode('&', $params);
@@ -279,7 +279,7 @@
# in this example though but this will not hurt anyone).
array_walk($params,
function(&$value, $key) {
$value = rawurlencode($key)."=".rawurlencode($value);
$value = urlencode($key)."=".urlencode($value);
}
);
$postvars = implode('&', $params);