[phpbbreloaded-checkins] SF.net SVN: phpbbreloaded: [222] phpBB Reloaded 2/install/index.php
Status: Planning
Brought to you by:
tehphpmaster
From: <mar...@us...> - 2006-06-11 23:39:27
|
Revision: 222 Author: markthedaemon Date: 2006-06-11 16:39:20 -0700 (Sun, 11 Jun 2006) ViewCVS: http://svn.sourceforge.net/phpbbreloaded/?rev=222&view=rev Log Message: ----------- the first commit for a new shiny installer that will be implemented, in the style of the one that phpBB3 has... Added Paths: ----------- phpBB Reloaded 2/install/index.php Added: phpBB Reloaded 2/install/index.php =================================================================== --- phpBB Reloaded 2/install/index.php (rev 0) +++ phpBB Reloaded 2/install/index.php 2006-06-11 23:39:20 UTC (rev 222) @@ -0,0 +1,34 @@ +<?php +/** +* +* @package: install +* @version: $Id: index.php,v 1.1.1.1 2006/02/24 02:28:06 markthedaemon Exp $ +* @copyright: (c) 2006 phpBB Reloaded & 2002 phpBB Group +* @license: http://opensource.org/licenses/gpl-license.php GNU Public License +* +*/ + +if( isset($HTTP_GET_VARS['mode']) ) +{ + switch( $HTTP_GET_VARS['mode'] ) + { + case 'install': + + break; + case 'support': + + break; + case 'license': + + break; + default: + + break; + } +} +else +{ + +} + +?> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |