|
From: Javier B. <jb...@us...> - 2005-03-31 11:26:26
|
Update of /cvsroot/openbash-org/openbash-org In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11940 Modified Files: config.php Log Message: Ya se pueden listar las quotes pendientes y aprobarlas, aunque de manera algo rudimentaria. Index: config.php =================================================================== RCS file: /cvsroot/openbash-org/openbash-org/config.php,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** config.php 3 Mar 2005 21:06:54 -0000 1.19 --- config.php 31 Mar 2005 11:25:57 -0000 1.20 *************** *** 6,21 **** $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 --- 6,23 ---- $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'; # language displayed ! $style = 'classic.css'; # stylesheet used $admin_pass = ''; ! # moderator_email: ! # put here the mail address of moderators, ! # they will receive an email for every pending quote ! ! $moderator_email = 'ch...@sl...,co...@va...'; ! $summaries = 50; # number of quotes shown on a single page *************** *** 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; --- 26,34 ---- */ ! include ('adodb/adodb.inc.php'); $ADODB_CACHE_DIR = 'cache/'; # we prefer associative arrays ! $ADODB_COUNTRECS = false; # we do not want RecordCount() emulation as it is slow ! $ADODB_LANG = 'es'; # adodb language ! $ADODB_FETCH_MODE = ADODB_FETCH_ASSOC; # directory to store sql results to speed up queries $ADODB_EXPIRE_CACHE = 3600; |