]> git.mxchange.org Git - mailer.git/blobdiff - inc/ajax/ajax_installer.php
Renamed more:
[mailer.git] / inc / ajax / ajax_installer.php
index ada36bf66c819e00a8ce70f974303bf4f95baf9a..108fd3e9135b6577fc0aac3d6bc6d359b0166e3b 100644 (file)
@@ -16,7 +16,7 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * 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 *
@@ -57,7 +57,7 @@ function establishAjaxInstallerDatabaseLink () {
        unsetSqlLinkUp(__FUNCTION__, __LINE__);
 
        // Establish link
-       $linkResource = SQL_CONNECT(getSession('mysql_host'), getSession('mysql_login'), getSession('mysql_password1'), __FUNCTION__, __LINE__);
+       $linkResource = sqlConnectToDatabase(getSession('mysql_host'), getSession('mysql_login'), getSession('mysql_password1'), __FUNCTION__, __LINE__);
 
        // Is this a link resource?
        if (!is_resource($linkResource)) {
@@ -66,7 +66,7 @@ function establishAjaxInstallerDatabaseLink () {
        } // END - if
 
        // Does selecting the database work?
-       if (!SQL_SELECT_DB(getSession('mysql_dbase'), __FUNCTION__, __LINE__)) {
+       if (!sqlSelectDatabase(getSession('mysql_dbase'), __FUNCTION__, __LINE__)) {
                // Could not be selected
                reportBug(__FUNCTION__, __LINE__, 'Could not select database ' . getSession('mysql_dbase'));
        } elseif ((!isFileReadable(getSession('base_path') . 'install/tables.sql')) || (!isFileReadable(getSession('base_path') . 'install/menu-'.getLanguage().'.sql'))) {
@@ -578,7 +578,7 @@ function doAjaxInstallerStepImportTablesSql () {
        runFilterChain('run_sqls');
 
        // Close SQL link
-       SQL_CLOSE(__FUNCTION__, __LINE__);
+       sqlCloseLink(__FUNCTION__, __LINE__);
 }
 
 // Call-back function to import menu SQL file
@@ -602,7 +602,7 @@ function doAjaxInstallerStepImportMenuSql () {
        runFilterChain('run_sqls');
 
        // Close SQL link
-       SQL_CLOSE(__FUNCTION__, __LINE__);
+       sqlCloseLink(__FUNCTION__, __LINE__);
 }
 
 // Call-back function to install some important extensions