updated the compiler to first check if array values is set

This commit is contained in:
2017-10-30 20:50:56 +02:00
parent ccb3f09a34
commit 306a9b9613
19 changed files with 551 additions and 709 deletions

View File

@ -93,25 +93,24 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_component` (
KEY `idx_state` (`published`),
KEY `idx_system_name` (`system_name`),
KEY `idx_name_code` (`name_code`),
KEY `idx_add_placeholders` (`add_placeholders`),
KEY `idx_add_javascript` (`add_javascript`),
KEY `idx_debug_linenr` (`debug_linenr`),
KEY `idx_mvc_versiondate` (`mvc_versiondate`),
KEY `idx_addfootable` (`addfootable`),
KEY `idx_add_php_helper_admin` (`add_php_helper_admin`),
KEY `idx_add_update_server` (`add_update_server`),
KEY `idx_add_php_helper_site` (`add_php_helper_site`),
KEY `idx_creatuserhelper` (`creatuserhelper`),
KEY `idx_add_php_helper_both` (`add_php_helper_both`),
KEY `idx_add_license` (`add_license`),
KEY `idx_add_admin_event` (`add_admin_event`),
KEY `idx_license_type` (`license_type`),
KEY `idx_add_site_event` (`add_site_event`),
KEY `idx_add_css` (`add_css`),
KEY `idx_add_admin_event` (`add_admin_event`),
KEY `idx_add_placeholders` (`add_placeholders`),
KEY `idx_add_php_helper_both` (`add_php_helper_both`),
KEY `idx_add_site_event` (`add_site_event`),
KEY `idx_debug_linenr` (`debug_linenr`),
KEY `idx_creatuserhelper` (`creatuserhelper`),
KEY `idx_update_server_target` (`update_server_target`),
KEY `idx_add_license` (`add_license`),
KEY `idx_addfootable` (`addfootable`),
KEY `idx_license_type` (`license_type`),
KEY `idx_add_php_helper_admin` (`add_php_helper_admin`),
KEY `idx_add_php_helper_site` (`add_php_helper_site`),
KEY `idx_add_javascript` (`add_javascript`),
KEY `idx_add_update_server` (`add_update_server`),
KEY `idx_adduikit` (`adduikit`),
KEY `idx_add_email_helper` (`add_email_helper`),
KEY `idx_emptycontributors` (`emptycontributors`),
KEY `idx_add_php_preflight_install` (`add_php_preflight_install`),
KEY `idx_add_php_preflight_update` (`add_php_preflight_update`),
KEY `idx_add_php_postflight_install` (`add_php_postflight_install`),
@ -119,6 +118,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_component` (
KEY `idx_add_php_method_uninstall` (`add_php_method_uninstall`),
KEY `idx_add_sql` (`add_sql`),
KEY `idx_addreadme` (`addreadme`),
KEY `idx_emptycontributors` (`emptycontributors`),
KEY `idx_add_sales_server` (`add_sales_server`)
) ENGINE=MyISAM AUTO_INCREMENT=0 DEFAULT CHARSET=utf8;