sintonia/3rd_party/storageServer/var/xmlrpc/urldecode
paul.baranowski b69ae200cf CC-1695 Remove Campcaster Studio and make install easier
Creating new directory structure.
2010-09-30 15:40:11 -04:00

7 lines
No EOL
154 B
PHP
Executable file

#!/usr/bin/php -q
<?
$fp = fopen("/dev/stdin", "r");
$data = '';
while($part = fgets($fp, 1024)) $data .= $part;
echo urldecode($data);
?>