head	1.2;
access;
symbols;
locks; strict;
comment	@# @;


1.2
date	2000.01.16.20.34.13;	author chuck;	state dead;
branches;
next	1.1;

1.1
date	99.07.20.07.36.26;	author jon;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Babel should now completely use the PHPLIB database abstraction code. The
SQL schema still needs to be revised for portability - it's tied to mysql
now through auto_increment - but I want to redo the schema anyway in order
to get rid of most recursive queries. And this should make it easier for
people to set up - I'm going to try and put together an installable tarball
later today.

A friend of mine has promised to do some design work to improve the UI and
generally change things to match IMP/other horde stuff by the end of
January, so I'm hoping to get feedback on what's good and what's bad in the
current UI.

Hoping that this and the Turba commit might jumpstart some work on modules
other than IMP...
@
text
@function disconnect_from_database (&$request_ref) {
  if (!($dbh = $request_ref->dbh))
    return error("dbh undefined");
  
  if (!($dbh->disconnect()))
    return error("could not disconnect from database");
  
  return success();
}
@


1.1
log
@
jon: alrighty, babel.php3.in is now broken down into seperate
     function files.  they're jusy dying to be combined into
     objects and seperate source files.
@
text
@@

