X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fdb%2Flib.php;h=76a097bf2ca33c8902e9a7b71fdae498d9249263;hb=b20eb1c60e5d9eb2bd596bbd119d35d10ee46b20;hp=7578d6077012f93178cb010603cf24948f56ea63;hpb=7f104f6fe558bb56b4205241435a2357c2feece1;p=mailer.git diff --git a/inc/db/lib.php b/inc/db/lib.php index 7578d60770..76a097bf2c 100644 --- a/inc/db/lib.php +++ b/inc/db/lib.php @@ -10,9 +10,14 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : SQL-Typ auswaehlen * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $Date:: $ * + * $Tag:: 0.2.1-FINAL $ * + * $Author:: $ * + * Needs to be in all Files and every File needs "svn propset * + * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * - * Copyright (c) 2003 - 2008 by Roland Haeder * + * Copyright (c) 2003 - 2009 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -33,23 +38,19 @@ // Some security stuff... if (!defined('__SECURITY')) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; - require($INC); -} - -// Select MySQL 3 as default database type -if (_DB_TYPE == "_DB_TYPE") define('_DB_TYPE', "mysql3"); + die(); +} // END - if // Create include file name -$INC = sprintf("%sinc/db/lib-%s.php", PATH, _DB_TYPE); +$inc = sprintf("inc/db/lib-%s.php", getConfig('_DB_TYPE')); -if ((file_exists($INC)) && (is_readable($INC))) { +if (isIncludeReadable($inc)) { // Include abstraction layer - require_once($INC); + loadIncludeOnce($inc); } else { // Bye, bye... - die("Cannot load database abstraction layer! R.I.P."); + die('Cannot load database abstraction layer ' . getConfig('_DB_TYPE') . ' -> R.I.P.'); } -// +// [EOF] ?>