Fixed wrong format date in SuiteDesk date fields

This commit is contained in:
Manuel Cillero 2017-09-08 13:46:45 +02:00
parent 892f86fc25
commit 9b5e9d7df0
2 changed files with 32 additions and 16 deletions

View file

@ -13,15 +13,15 @@ function storm_install() {
variable_set('storm_report_header', '');
variable_set('storm_icons_path', drupal_get_path('module', 'storm') .'/icons');
variable_set('storm_organization_nid', 0);
variable_set('storm_yearsrangebegin', 2001);
variable_set('storm_yearsrangeend', 2015);
variable_set('storm_yearsrangebegin', 2010);
variable_set('storm_yearsrangeend', 2025);
// Set the weight to 2 (to execute module hooks after pathauto):
# db_query("UPDATE {system} SET weight = 2 WHERE name = 'storm'");
// Clear the cache to get these to take effect:
# cache_clear_all();
drupal_install_schema('storm');
}