home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / tsw / TSW_3.4.0.exe / Apache2 / admin / save_prefs.inc < prev    next >
Encoding:
Text File  |  2003-03-16  |  659 b   |  27 lines

  1. <?php
  2. /********************************************************
  3.     include/save_prefs.inc
  4.     
  5.     (C)Copyright 2000-2003 Ryo Chijiiwa <Ryo@IlohaMail.org>
  6.  
  7.     This file is part of IlohaMail, and released under GPL.
  8.     See COPYING, or http://www.fsf.org/copyleft/gpl.html
  9.     
  10.     PURPOSE:
  11.         Shell for save_prefs.backend.inc
  12.  
  13. ********************************************************/
  14.  
  15. include_once("../conf/conf.inc");
  16.  
  17. $sp_backend = $backend;
  18. if ($sp_backend != "FS"){
  19.     include_once("../conf/db_conf.php");
  20.     if ((!isset($DB_PREFS_TABLE)) || (empty($DB_PREFS_TABLE))) $sp_backend = "FS";
  21.     else $sp_backend = "DB";
  22. }
  23.  
  24. include("../include/save_prefs.".$sp_backend.".inc");
  25.  
  26. ?>
  27.