X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fmysql-connect.php;h=12dd105bb298da0153e46a7f2a4cdda4a99bfdf0;hb=8bd34cbf42993fd62d3032f360b1f1cf470eeba2;hp=d10f8b3dc00c64cfe6f66492b2b3a6f2179c900a;hpb=f0abccc4bb5f88123bca86af01bb7bca294a81a2;p=mailer.git diff --git a/inc/mysql-connect.php b/inc/mysql-connect.php index d10f8b3dc0..12dd105bb2 100644 --- a/inc/mysql-connect.php +++ b/inc/mysql-connect.php @@ -17,7 +17,7 @@ * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * * Copyright (c) 2009 - 2011 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * 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 * @@ -100,7 +100,7 @@ if ((!isInstalling()) && (!isInstallationPhase())) { // Is it a valid resource? if (SQL_SELECT_DB($GLOBALS['mysql']['dbase'], __FILE__, __LINE__) === true) { - // This is required for extension 'optimize' to work + // Set database name (required for ext-optimize and isSqlTableCreated()) setConfigEntry('__DB_NAME', $GLOBALS['mysql']['dbase']); // Remove MySQL array from namespace @@ -110,15 +110,15 @@ if ((!isInstalling()) && (!isInstallationPhase())) { loadIncludeOnce('inc/load_cache.php'); } else { // Wrong database? - addFatalMessage(__FILE__, __LINE__, '{--WRONG_DB_SELECTED--}'); + debug_report_bug(__FILE__, __LINE__, 'Wrong database selected.'); } } else { // No link to database! - addFatalMessage(__FILE__, __LINE__, '{--NO_DB_LINK--}'); + debug_report_bug(__FILE__, __LINE__, 'Database link is not yet up.'); } } else { // Maybe you forgot to enter your database login? - addFatalMessage(__FILE__, __LINE__, '{--MYSQL_DATA_MISSING--}'); + debug_report_bug(__FILE__, __LINE__, 'Database login is missing.'); } } else { // Default output is 'direct' for HTML output