diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2007-07-17 17:02:05 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-07-17 17:02:05 +0000 |
| commit | 6c773c35b3177f0f6773778c49ca13172286c227 (patch) | |
| tree | 1eec2fbe386f797d64bf4c4f8df0fdc713199eeb /phpBB/styles | |
| parent | 484d214ef71540b462fb72a0867cb56e61c2bb7f (diff) | |
| download | forums-6c773c35b3177f0f6773778c49ca13172286c227.tar forums-6c773c35b3177f0f6773778c49ca13172286c227.tar.gz forums-6c773c35b3177f0f6773778c49ca13172286c227.tar.bz2 forums-6c773c35b3177f0f6773778c49ca13172286c227.tar.xz forums-6c773c35b3177f0f6773778c49ca13172286c227.zip | |
remove T_THEME_DATA completely... now the css data is able to be fetched for banned users too. Gives us a good chunk of memory back.
git-svn-id: file:///svn/phpbb/trunk@7901 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/styles')
| -rw-r--r-- | phpBB/styles/prosilver/template/overall_header.html | 18 | ||||
| -rw-r--r-- | phpBB/styles/prosilver/template/simple_header.html | 16 | ||||
| -rw-r--r-- | phpBB/styles/subsilver2/template/overall_header.html | 6 |
3 files changed, 11 insertions, 29 deletions
diff --git a/phpBB/styles/prosilver/template/overall_header.html b/phpBB/styles/prosilver/template/overall_header.html index 8a6f129f50..7b578d2c1d 100644 --- a/phpBB/styles/prosilver/template/overall_header.html +++ b/phpBB/styles/prosilver/template/overall_header.html @@ -77,18 +77,12 @@ <script type="text/javascript" src="{T_TEMPLATE_PATH}/styleswitcher.js"></script> <script type="text/javascript" src="{T_TEMPLATE_PATH}/forum_fn.js"></script> -<!-- IF T_STYLESHEET_LINK and not S_FORCE_EMBED_STYLE --> - <link href="{T_THEME_PATH}/print.css" rel="stylesheet" type="text/css" media="print" title="printonly" /> - <link href="{T_STYLESHEET_LINK}" rel="stylesheet" type="text/css" media="screen, projection" /> - - <link href="{T_THEME_PATH}/normal.css" rel="stylesheet" type="text/css" title="A" /> - <link href="{T_THEME_PATH}/medium.css" rel="alternate stylesheet" type="text/css" title="A+" /> - <link href="{T_THEME_PATH}/large.css" rel="alternate stylesheet" type="text/css" title="A++" /> -<!-- ELSE --> - <style type="text/css" media="screen, projection"> - {T_THEME_DATA} - </style> -<!-- ENDIF --> +<link href="{T_THEME_PATH}/print.css" rel="stylesheet" type="text/css" media="print" title="printonly" /> +<link href="{T_STYLESHEET_LINK}" rel="stylesheet" type="text/css" media="screen, projection" /> + +<link href="{T_THEME_PATH}/normal.css" rel="stylesheet" type="text/css" title="A" /> +<link href="{T_THEME_PATH}/medium.css" rel="alternate stylesheet" type="text/css" title="A+" /> +<link href="{T_THEME_PATH}/large.css" rel="alternate stylesheet" type="text/css" title="A++" /> <!-- IF S_CONTENT_DIRECTION eq 'rtl' --> <link href="{T_THEME_PATH}/bidi.css" rel="stylesheet" type="text/css" media="screen, projection" /> diff --git a/phpBB/styles/prosilver/template/simple_header.html b/phpBB/styles/prosilver/template/simple_header.html index eaf6e6dd03..e702dcc48b 100644 --- a/phpBB/styles/prosilver/template/simple_header.html +++ b/phpBB/styles/prosilver/template/simple_header.html @@ -43,18 +43,12 @@ </script> <script type="text/javascript" src="{T_TEMPLATE_PATH}/styleswitcher.js"></script> -<!-- IF T_STYLESHEET_LINK --> - <link href="{T_THEME_PATH}/print.css" rel="stylesheet" type="text/css" media="print" title="printonly" /> - <link href="{T_STYLESHEET_LINK}" rel="stylesheet" type="text/css" media="screen, projection" /> +<link href="{T_THEME_PATH}/print.css" rel="stylesheet" type="text/css" media="print" title="printonly" /> +<link href="{T_STYLESHEET_LINK}" rel="stylesheet" type="text/css" media="screen, projection" /> - <link href="{T_THEME_PATH}/normal.css" rel="alternate stylesheet" type="text/css" title="A" /> - <link href="{T_THEME_PATH}/medium.css" rel="alternate stylesheet" type="text/css" title="A+" /> - <link href="{T_THEME_PATH}/large.css" rel="alternate stylesheet" type="text/css" title="A++" /> -<!-- ELSE --> - <style type="text/css" media="screen, projection"> - {T_THEME_DATA} - </style> -<!-- ENDIF --> +<link href="{T_THEME_PATH}/normal.css" rel="alternate stylesheet" type="text/css" title="A" /> +<link href="{T_THEME_PATH}/medium.css" rel="alternate stylesheet" type="text/css" title="A+" /> +<link href="{T_THEME_PATH}/large.css" rel="alternate stylesheet" type="text/css" title="A++" /> <!-- DEFINE $POPUP = 1 --> </head> diff --git a/phpBB/styles/subsilver2/template/overall_header.html b/phpBB/styles/subsilver2/template/overall_header.html index 3eaae01108..4cdd0c993e 100644 --- a/phpBB/styles/subsilver2/template/overall_header.html +++ b/phpBB/styles/subsilver2/template/overall_header.html @@ -14,13 +14,7 @@ {META} <title>{SITENAME} • <!-- IF S_IN_MCP -->{L_MCP} • <!-- ELSEIF S_IN_UCP -->{L_UCP} • <!-- ENDIF -->{PAGE_TITLE}</title> -<!-- IF T_STYLESHEET_LINK --> <link rel="stylesheet" href="{T_STYLESHEET_LINK}" type="text/css" /> -<!-- ELSE --> -<style type="text/css"> -{T_THEME_DATA} -</style> -<!-- ENDIF --> <script type="text/javascript"> <!-- |
