From: <ex...@us...> - 2013-08-27 15:44:51
|
Revision: 6302 http://sourceforge.net/p/web-erp/reponame/6302 Author: exsonqu Date: 2013-08-27 15:44:46 +0000 (Tue, 27 Aug 2013) Log Message: ----------- 27/8/2013 Exson: Remove the option of weberp-demo.sql to avoid installation error. Reported by icedlava. Modified Paths: -------------- trunk/install/index.php Modified: trunk/install/index.php =================================================================== --- trunk/install/index.php 2013-08-27 15:22:34 UTC (rev 6301) +++ trunk/install/index.php 2013-08-27 15:44:46 UTC (rev 6302) @@ -1029,7 +1029,7 @@ foreach($COAs as $Value){ if($Value == 'weberp-new.sql'){ echo '<option value="'.$Value.'" selected="true">'.$Value.'</option>'; - }else{ + }elseif($Value != 'weberp-demo.sql'){// the demo sql selection is not necessary so not allowed echo '<option value="'.$Value.'">'.$Value.'</option>'; } } |