preparing for 2.6 yui upgrade

This commit is contained in:
JT Smith 2008-10-22 18:36:26 +00:00
parent eea207b3ec
commit a041e93da8
1632 changed files with 0 additions and 812103 deletions

View file

@ -1,33 +0,0 @@
<?php
print "data = { ";
$index = 0;
foreach($_GET as $key => $value) {
print htmlspecialchars("$key:", ENT_QUOTES);
if (gettype($value) == "array") {
print "[";
for ($i = 0;$i < count($_GET[$key]);$i++) {
$v = $_GET[$key][$i];
print "\"$v\"";
if ($i < count($_GET[$key])-1) {
print ",";
}
}
print "]";
} else {
print "\"$value\"";
}
$index++;
if ( ($index) < count($_GET) ) {
print ", ";
}
}
print " };";
?>