From efe1b391e82c508dcd386bac18f9bb8c0290b9dd Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Mon, 22 Oct 2012 20:56:20 +0000 Subject: [PATCH] Fixed parser errors from latest rewrites :( --- inc/extensions/ext-beg.php | 2 +- inc/extensions/ext-payout.php | 2 +- inc/install/install_page_2.php | 14 +++++++------- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/inc/extensions/ext-beg.php b/inc/extensions/ext-beg.php index 27e4607740..fece5e3a30 100644 --- a/inc/extensions/ext-beg.php +++ b/inc/extensions/ext-beg.php @@ -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!) diff --git a/inc/extensions/ext-payout.php b/inc/extensions/ext-payout.php index b086623571..471c3a9aea 100644 --- a/inc/extensions/ext-payout.php +++ b/inc/extensions/ext-payout.php @@ -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!) diff --git a/inc/install/install_page_2.php b/inc/install/install_page_2.php index f286b4c72f..ccf4841df9 100644 --- a/inc/install/install_page_2.php +++ b/inc/install/install_page_2.php @@ -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] +?> -- 2.39.2