From 8b8b3eddb9579fcc5b449c2f50f61b39ed3ebc68 Mon Sep 17 00:00:00 2001 From: zhujinyong Date: Thu, 10 Jan 2013 01:07:19 +0000 Subject: [PATCH] * code for task#1091. --- module/install/js/step2.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 module/install/js/step2.js diff --git a/module/install/js/step2.js b/module/install/js/step2.js new file mode 100644 index 0000000000..17bc4f7eb5 --- /dev/null +++ b/module/install/js/step2.js @@ -0,0 +1,7 @@ +$(document).ready(function() +{ + $.get("pathinfo.php", function(result) + { + $('#requestType').val('PATH_INFO'); + }); +});