From 2f42adf45dd59cf895e0b2203ad33b9bc6322554 Mon Sep 17 00:00:00 2001 From: Daniel Wehner Date: Thu, 26 Jul 2012 14:12:16 -0500 Subject: [PATCH] fix views_get_localization_plugin --- views.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/views.module b/views.module index f1c110a24a8..f3cd92a9f62 100644 --- a/views.module +++ b/views.module @@ -1353,10 +1353,10 @@ function views_get_localization_plugin() { // Provide sane default values for the localization plugin. if (empty($plugin)) { if (module_exists('locale')) { - $plugin = 'core'; + $plugin = 'Core'; } else { - $plugin = 'none'; + $plugin = 'None'; } }