From 3439add62fc726a7c5f3992c6c8e4cd584cd26a1 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Wed, 12 Jan 2011 19:32:19 +0000 Subject: [PATCH] BUGFIX DateField wrong datepicker-%s.js path (fixes #6296, thanks martijn) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@115460 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- forms/DateField.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forms/DateField.php b/forms/DateField.php index a01a58df1..14b1168be 100755 --- a/forms/DateField.php +++ b/forms/DateField.php @@ -557,7 +557,7 @@ class DateField_View_JQuery { // TODO Check for existence of locale to avoid unnecessary 404s from the CDN Requirements::javascript( sprintf( - THIRDPARTY_DIR . '/jquery-ui/minified/i18n/jquery.ui.datepicker-%s.min.js', + THIRDPARTY_DIR . '/jquery-ui/i18n/jquery.ui.datepicker-%s.js', // can be a mix between names (e.g. 'de') and combined locales (e.g. 'zh-TW') $lang ));