Several kinky code smoothed, fixes for admin login
[mailer.git] / inc / db / lib.php
index 217d7681b042081a783791c3b3aa665800b2efba..76a097bf2ca33c8902e9a7b71fdae498d9249263 100644 (file)
@@ -17,7 +17,7 @@
  * 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 *
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
-       require($INC);
+       die();
 } // END - if
 
-// Is it not set?
-if (!isConfigEntrySet('_DB_TYPE')) setConfigEntry('_DB_TYPE', 'mysql3');
-
 // Create include file name
-$INC = sprintf("inc/db/lib-%s.php", getConfig('_DB_TYPE'));
+$inc = sprintf("inc/db/lib-%s.php", getConfig('_DB_TYPE'));
 
-if (isIncludeReadable($INC)) {
+if (isIncludeReadable($inc)) {
        // Include abstraction layer
-       loadIncludeOnce($INC);
+       loadIncludeOnce($inc);
 } else {
        // Bye, bye...
        die('Cannot load database abstraction layer <u>' . getConfig('_DB_TYPE') . '</u> -&gt; R.I.P.');
 }
 
-//
+// [EOF]
 ?>