]> git.mxchange.org Git - mailer.git/blobdiff - inc/db/lib.php
Updated copyright notice as there are changes in this year
[mailer.git] / inc / db / lib.php
index 51533a87067e957ceabae81c1151940a4d414909..9b243e68581c93f11205909d16281522bb28ecb0 100644 (file)
@@ -16,8 +16,8 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
@@ -43,13 +43,17 @@ if (!defined('__SECURITY')) {
 // Create include file name
 $inc = sprintf("inc/db/lib-%s.php", getConfig('_DB_TYPE'));
 
-if (isIncludeReadable($inc)) {
-       // Include abstraction layer
-       loadIncludeOnce($inc);
-} else {
+// Is the database library available?
+if (!isIncludeReadable($inc)) {
        // Bye, bye...
-       die('Cannot load database abstraction layer <u>' . getConfig('_DB_TYPE') . '</u> -&gt; R.I.P.');
-}
+       reportBug(__FILE__, __LINE__, 'Cannot load database library <u>' . getConfig('_DB_TYPE') . '</u> -&gt; R.I.P.');
+} // END - if
+
+// Include abstraction layer
+loadIncludeOnce($inc);
+
+// Initialize it
+initDatabaseLayer();
 
 // [EOF]
 ?>