Fixed parser errors from latest rewrites :(
authorRoland Häder <roland@mxchange.org>
Mon, 22 Oct 2012 20:56:20 +0000 (20:56 +0000)
committerRoland Häder <roland@mxchange.org>
Mon, 22 Oct 2012 20:56:20 +0000 (20:56 +0000)
inc/extensions/ext-beg.php
inc/extensions/ext-payout.php
inc/install/install_page_2.php

index 27e46077407a1deb77d408f6ef631c86cb038b4c..fece5e3a30e188ecf86687beeac982fa70998a13 100644 (file)
@@ -284,7 +284,7 @@ INDEX (`userid`)",
                        case '0.2.8': // SQL queries for v0.2.8
                                addConfigChangeSql('beg_ral_enable_notify', 'beg_rallye_enable_notify', "ENUM('Y','N') NOT NULL DEFAULT 'N'");
                                addConfigChangeSql('beg_ral_disable_notify', 'beg_rallye_disable_notify', "ENUM('Y','N') NOT NULL DEFAULT 'N'");
-                               addExtensionChangeTableColumnSql('user_data', 'beg_ral_enable_notify' 'beg_rallye_enable_notify', 'BIGINT(20) UNSIGNED NOT NULL DEFAULT 0');
+                               addExtensionChangeTableColumnSql('user_data', 'beg_ral_enable_notify', 'beg_rallye_enable_notify', 'BIGINT(20) UNSIGNED NOT NULL DEFAULT 0');
                                addExtensionChangeTableColumnSql('user_data', 'beg_ral_disable_notify', 'beg_rallye_disable_notify', 'BIGINT(20) UNSIGNED NOT NULL DEFAULT 0');
 
                                // Update notes (these will be set as task text!)
index b08662357134d45f7cdbcdb6b24a476a4a736f9e..471c3a9aea229fd5f2909c571d3f5a7e413456a0 100644 (file)
@@ -146,7 +146,7 @@ PRIMARY KEY (`id`)",
                                break;
 
                        case '0.2.1': // SQL queries for v0.2.1
-                               addExtensionChangeTableColumnSql('user_payouts', 'payout_total' 'payout_total', 'FLOAT(20,5) UNSIGNED NOT NULL DEFAULT 0.00000');
+                               addExtensionChangeTableColumnSql('user_payouts', 'payout_total', 'payout_total', 'FLOAT(20,5) UNSIGNED NOT NULL DEFAULT 0.00000');
                                addExtensionChangeTableColumnSql('payout_types', 'rate', 'rate', 'FLOAT(20,5) UNSIGNED NOT NULL DEFAULT 0.00000');
 
                                // Update notes (these will be set as task text!)
index f286b4c72fa9c6bb94fad779b7561fac52675dfb..ccf4841df907136d8f310314d1a7bf14361ed507 100644 (file)
@@ -60,13 +60,10 @@ if (ifFatalErrorsDetected()) {
 // Prepare content array
 $content = array(
        'mysql_host'   => $GLOBALS['install_mysql']['host'],
-
-// [EOF]
-?>
-       'mysql_dbase'  => $GLOBALS['install_mysql'['dbase',
-       'mysql_prefix' => $GLOBALS['install_mysql'['prefix',
-       'mysql_login'  => $GLOBALS['install_mysql'['login',
-       'table_type'   => $GLOBALS['install_mysql'['type',
+       'mysql_dbase'  => $GLOBALS['install_mysql']['dbase'],
+       'mysql_prefix' => $GLOBALS['install_mysql']['prefix'],
+       'mysql_login'  => $GLOBALS['install_mysql']['login'],
+       'table_type'   => $GLOBALS['install_mysql']['type'],
        'spath'        => postRequestElement('spath'),
        'burl'         => postRequestElement('burl'),
        'title'        => postRequestElement('title'),
@@ -76,3 +73,6 @@ $content = array(
 
 // Load template
 addTemplateToInstallContent('install_page2', $content);
+
+// [EOF]
+?>