diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-01-20 00:54:02 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-01-20 00:54:02 +0000 |
commit | 681197a265f1dd3873780fdcf0b5f1e8fa0150ab (patch) | |
tree | fe8aafe29cf5f3d6d5a285c330147c9e3f3668c0 /installer/index.php | |
parent | d51955c8efa78d7f0a0ca8c138c2eebaf5ecb975 (diff) |
Web based installer. It's still got some rough edges, but you can now
do a complete CLI or web based install.
Diffstat (limited to 'installer/index.php')
-rw-r--r-- | installer/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/installer/index.php b/installer/index.php index 90beb4f9..27faf1b6 100644 --- a/installer/index.php +++ b/installer/index.php @@ -32,12 +32,12 @@ define("SYSPATH", "DEFINED_TO_SOMETHING_SO_THAT_WE_CAN_KEEP_CONSISTENT_PREAMBLES require(DOCROOT . "installer/installer.php"); if (php_sapi_name() == "cli") { - installer::command_line(); + include("cli.php"); } else { if ($_GET["page"] == "check") { include("check.html.php"); } else { - installer::web(); + include("web.php"); } } |