diff options
author | rub <rub@piwigo.org> | 2008-10-15 04:55:50 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2008-10-15 04:55:50 +0000 |
commit | f55a21f41bb7440637667e195425d92489f5c433 (patch) | |
tree | 2807fb371106c5b0e21956dcd41290a8c0f8bbd0 /template/yoga/include | |
parent | 691064d133858a31002100d070c33818a75a30bc (diff) |
Resolved issue 0000893: 404 errors on template-common/lib/ui/i18n/ui.datepicker-en.js
New implementation.
git-svn-id: http://piwigo.org/svn/trunk@2743 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga/include')
-rw-r--r-- | template/yoga/include/datepicker.inc.tpl | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/template/yoga/include/datepicker.inc.tpl b/template/yoga/include/datepicker.inc.tpl index 871be0ea6..41066f988 100644 --- a/template/yoga/include/datepicker.inc.tpl +++ b/template/yoga/include/datepicker.inc.tpl @@ -1,10 +1,16 @@ {* $Id$ *} + {known_script id="jquery" src=$ROOT_URL|@cat:"template-common/lib/jquery.packed.js"} {known_script id="jquery.ui" src=$ROOT_URL|@cat:"template-common/lib/ui/ui.core.packed.js"} {known_script id="jquery.ui.datepicker" src=$ROOT_URL|@cat:"template-common/lib/ui/ui.datepicker.packed.js"} -{known_script id="jquery.ui.datepicker-$lang_info.code" src=$ROOT_URL|@cat:"template-common/lib/ui/i18n/ui.datepicker-"|@cat:$lang_info.code|@cat:".js"} {known_script id="datepicker.js" src=$ROOT_URL|@cat:"template-common/datepicker.js"} +{assign var="datepicker_language" value="template-common/lib/ui/i18n/ui.datepicker-"|@cat:$lang_info.code|@cat:".js"} + +{if "PHPWG_ROOT_PATH"|@constant|@cat:$datepicker_language|@file_exists} +{known_script id="jquery.ui.datepicker-$lang_info.code" src=$ROOT_URL|@cat:$datepicker_language} +{/if} + {html_head} <link rel="stylesheet" type="text/css" href="{$ROOT_URL}template-common/lib/ui/ui.datepicker.css"> {/html_head} |