diff options
| author | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-07-02 11:02:55 -0500 |
|---|---|---|
| committer | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-07-02 11:07:12 -0500 |
| commit | 59d13d0535ab3687725d36f2dbe2ee64de294df8 (patch) | |
| tree | ce81e5616430b47feec09547657e346f5317fa88 /phpBB/styles/subsilver2 | |
| parent | 156d5c671fb9db28fbbdcacb974093c2c52b0f5b (diff) | |
| download | forums-59d13d0535ab3687725d36f2dbe2ee64de294df8.tar forums-59d13d0535ab3687725d36f2dbe2ee64de294df8.tar.gz forums-59d13d0535ab3687725d36f2dbe2ee64de294df8.tar.bz2 forums-59d13d0535ab3687725d36f2dbe2ee64de294df8.tar.xz forums-59d13d0535ab3687725d36f2dbe2ee64de294df8.zip | |
[feature/twig] INCLUDEJS behavior now supports local relative paths
This was done because T_TEMPLATE_PATH is not always correct for js files
(e.g. the inheriting style does not include these). Now we use the Twig
Loader to find the correct file to link to (most specific file first, then
parent styles). Also allows using @namespace convention
PHPBB3-11598
Diffstat (limited to 'phpBB/styles/subsilver2')
| -rw-r--r-- | phpBB/styles/subsilver2/template/timezone_option.html | 2 | ||||
| -rw-r--r-- | phpBB/styles/subsilver2/template/ucp_groups_manage.html | 2 | ||||
| -rw-r--r-- | phpBB/styles/subsilver2/template/ucp_profile_avatar.html | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/styles/subsilver2/template/timezone_option.html b/phpBB/styles/subsilver2/template/timezone_option.html index 9b68f81557..0f27719f86 100644 --- a/phpBB/styles/subsilver2/template/timezone_option.html +++ b/phpBB/styles/subsilver2/template/timezone_option.html @@ -15,6 +15,6 @@ {S_TZ_OPTIONS} </select> - <!-- INCLUDEJS {T_TEMPLATE_PATH}/timezone.js --> + <!-- INCLUDEJS timezone.js --> </td> </tr> diff --git a/phpBB/styles/subsilver2/template/ucp_groups_manage.html b/phpBB/styles/subsilver2/template/ucp_groups_manage.html index 13b8b8c6b7..b8e7e29481 100644 --- a/phpBB/styles/subsilver2/template/ucp_groups_manage.html +++ b/phpBB/styles/subsilver2/template/ucp_groups_manage.html @@ -95,7 +95,7 @@ </tr> </table> -<!-- INCLUDEJS {T_TEMPLATE_PATH}/avatars.js --> +<!-- INCLUDEJS avatars.js --> <!-- ELSEIF S_LIST --> diff --git a/phpBB/styles/subsilver2/template/ucp_profile_avatar.html b/phpBB/styles/subsilver2/template/ucp_profile_avatar.html index 885d46ef0b..60a816d00a 100644 --- a/phpBB/styles/subsilver2/template/ucp_profile_avatar.html +++ b/phpBB/styles/subsilver2/template/ucp_profile_avatar.html @@ -48,6 +48,6 @@ </tr> </table> -<!-- INCLUDEJS {T_TEMPLATE_PATH}/avatars.js --> +<!-- INCLUDEJS avatars.js --> <!-- INCLUDE ucp_footer.html --> |
