adodb-cryptsession.php 591 B

123456789101112131415161718192021222324
  1. <?php
  2. /*
  3. V4.01 23 Oct 2003 (c) 2000-2005 John Lim (jlim@natsoft.com.my). All rights reserved.
  4. Contributed by Ross Smith (adodb@netebb.com).
  5. Released under both BSD license and Lesser GPL library license.
  6. Whenever there is any discrepancy between the two licenses,
  7. the BSD license will take precedence.
  8. Set tabs to 4 for best viewing.
  9. */
  10. /*
  11. This file is provided for backwards compatibility purposes
  12. */
  13. require_once dirname(__FILE__) . '/adodb-session.php';
  14. require_once ADODB_SESSION . '/adodb-encrypt-md5.php';
  15. ADODB_Session::filter(new ADODB_Encrypt_MD5());
  16. ?>