|
From: Benjamin C. <bc...@us...> - 2001-09-15 15:49:47
|
Update of /cvsroot/phpbt/phpbt In directory usw-pr-cvs1:/tmp/cvs-serv10875 Modified Files: configure Log Message: Getting there... Index: configure =================================================================== RCS file: /cvsroot/phpbt/phpbt/configure,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- configure 2001/09/15 15:39:57 1.9 +++ configure 2001/09/15 15:49:42 1.10 @@ -83,8 +83,8 @@ $DIALOG --backtitle "phpBT Configuration" \ --title "Database Server Software (1 of 5)" \ --radiolist "Enter the type database server" 0 0 3 \ - MySQL '' on \ - Postgres '' off + mysql MySQL on \ + pgsql PostgreSQL off \ 2> $tempfile if [ $? -gt 0 ]; then return @@ -247,9 +247,11 @@ echo "/INSTALLURL/s|, '.*'|, '$INSTALLURL'|" >> $tempfile echo "/PHPLIBPATH/s|, '.*'|, '$PHPLIBPATH'|" >> $tempfile echo "/JPGRAPH_PATH/s|, '.*'|, '$JPGRAPH_PATH'|" >> $tempfile + echo "/DB_TYPE/s|, '.*'|, '$DB_TYPE'|" >> $tempfile echo "/DB_HOST/s|, '.*'|, '$DB_HOST'|" >> $tempfile echo "/DB_USER/s|, '.*'|, '$DB_USER'|" >> $tempfile echo "/DB_PASSWORD/s|, '.*'|, '$DB_PASS'|" >> $tempfile + echo "/TBL_PREFIX/s|, '.*'|, '$DB_TBL_PREFIX'|" >> $tempfile sed -f $tempfile config.php.bak > config.php $DIALOG --backtitle "phpBT Configuration" \ --infobox "Your changes have been saved" 5 36 |