Update of /cvsroot/openbash-org/openbash-org
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14889
Modified Files:
config.php
Log Message:
- Añadida configuración para seleccionar uno de varios estilos posibles.
- A ver si le damos el último empujón ya.
Index: config.php
===================================================================
RCS file: /cvsroot/openbash-org/openbash-org/config.php,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** config.php 26 Dec 2004 22:57:18 -0000 1.18
--- config.php 3 Mar 2005 21:06:54 -0000 1.19
***************
*** 6,19 ****
$dbuser = 'openbash'; # a user with full privileges to access the database
$dbpass = '02jdf9234y9'; # the user's password database
! $dbname = 'openbash-org'; # the database name
! $dbtype = 'mysql'; # type of database: mysql, pgsql, etc
$lang = 'spanish';
$admin_pass = '';
! $moderator_email = 'co...@va...'; # put here the mail address of moderators,
! # they will receive an email for every pending quote
! $summaries = 50; # number of quotes shown on a single page
/*
--- 6,22 ----
$dbuser = 'openbash'; # a user with full privileges to access the database
$dbpass = '02jdf9234y9'; # the user's password database
! $dbname = 'openbash'; # the database name
! $dbtype = 'mysql'; # type of database: mysql, pgsql, etc
$lang = 'spanish';
+ $style = 'classic.css';
$admin_pass = '';
! $moderator_email = 'co...@va...'; # put here the mail
! # address of moderators,
! # they will receive an email
! # for every pending quote
! $summaries = 50; # number of quotes shown on a single page
/*
***************
*** 21,29 ****
*/
! include ('adodb/adodb.inc.php');
! $ADODB_CACHE_DIR = 'cache/'; # we prefer associative arrays
! $ADODB_COUNTRECS = false; # we do not want RecordCount() emulation
$ADODB_LANG = 'es';
! $ADODB_FETCH_MODE = ADODB_FETCH_ASSOC; # directory to store sql results to speed up queries
$ADODB_EXPIRE_CACHE = 3600;
--- 24,33 ----
*/
! include ('adodb.inc.php');
! $ADODB_CACHE_DIR = 'cache/'; # we prefer associative arrays
! $ADODB_COUNTRECS = false; # we do not want RecordCount() emulation
$ADODB_LANG = 'es';
! $ADODB_FETCH_MODE = ADODB_FETCH_ASSOC; # directory to store sql
! # results to speed up queries
$ADODB_EXPIRE_CACHE = 3600;
|