Update of /cvsroot/phpwiki/phpwiki/lib
In directory usw-pr-cvs1:/tmp/cvs-serv27750
Modified Files:
pgsql.php
Log Message:
Updated the table names.
Index: pgsql.php
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/lib/pgsql.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** pgsql.php 2001/02/13 05:54:38 1.6
--- pgsql.php 2001/07/15 16:03:26 1.7
***************
*** 25,33 ****
*/
! $WikiPageStore = $DBParams['prefix'] . "wiki";
! $ArchivePageStore = $DBParams['prefix'] . "archive";
! $WikiLinksPageStore = $DBParams['prefix'] . "wikilinks";
$HotTopicsPageStore = $DBParams['prefix'] . "hottopics";
! $HitCountPageStore = $DBParams['prefix'] . "hitcount";
// open a database and return a hash
--- 25,33 ----
*/
! $WikiPageStore = $DBParams['prefix'] . "pages";
! $ArchivePageStore = $DBParams['prefix'] . "archive";
! $WikiLinksPageStore = $DBParams['prefix'] . "links";
$HotTopicsPageStore = $DBParams['prefix'] . "hottopics";
! $HitCountPageStore = $DBParams['prefix'] . "hitcount";
// open a database and return a hash
***************
*** 435,438 ****
--- 435,440 ----
// mode: php
// c-file-style: "ellemtel"
+ // tab-width: 4
+ // indent-tabs-mode: nil
// End:
?>
|