]> git.mxchange.org Git - mailer.git/blobdiff - inc/ajax/ajax_installer.php
Renamed more:
[mailer.git] / inc / ajax / ajax_installer.php
index f1e7eb7aaa5d0f55b8119a98cac4fd560e08a8cd..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'))) {
@@ -103,6 +103,7 @@ function doAjaxProcessInstall () {
 
        // Again we do a call-back, so generate a function name depending on 'do'
        $callbackName = 'doAjaxInstaller' . capitalizeUnderscoreString(postRequestElement('do'));
+       $GLOBALS['ajax_callback_function'] = $callbackName;
 
        // Is the call-back function there?
        if (!function_exists($callbackName)) {
@@ -577,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
@@ -601,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