mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Fix javascript errors in simple header (prosilver) by adding forum_fn.js and the corresponding variables. (Bug #42135)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9377 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
357e984902
commit
d4b33ccac0
2 changed files with 7 additions and 0 deletions
|
@ -118,6 +118,7 @@
|
||||||
<li>[Fix] Better thumbnail quality with imagemagick. (Bug #42565)</li>
|
<li>[Fix] Better thumbnail quality with imagemagick. (Bug #42565)</li>
|
||||||
<li>[Fix] Fix download count increments for image attachments without corresponding thumbnails. (Bug #42505)</li>
|
<li>[Fix] Fix download count increments for image attachments without corresponding thumbnails. (Bug #42505)</li>
|
||||||
<li>[Fix] Fix wrong bot ip check if bot ip was wrongly entered by admin. (Bug #42485)</li>
|
<li>[Fix] Fix wrong bot ip check if bot ip was wrongly entered by admin. (Bug #42485)</li>
|
||||||
|
<li>[Fix] Fix javascript errors in simple header (prosilver) by adding forum_fn.js and the corresponding variables. (Bug #42135)</li>
|
||||||
<li>[Change] Allow download of conflicting file for later reference in automatic updater</li>
|
<li>[Change] Allow download of conflicting file for later reference in automatic updater</li>
|
||||||
<li>[Change] Default difference view is now 'inline' instead of 'side by side'</li>
|
<li>[Change] Default difference view is now 'inline' instead of 'side by side'</li>
|
||||||
<li>[Change] Added new option for merging differences to conflicting files in automatic updater</li>
|
<li>[Change] Added new option for merging differences to conflicting files in automatic updater</li>
|
||||||
|
|
|
@ -17,6 +17,11 @@
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
// <![CDATA[
|
// <![CDATA[
|
||||||
|
|
||||||
|
var jump_page = '{LA_JUMP_PAGE}:';
|
||||||
|
var on_page = '{ON_PAGE}';
|
||||||
|
var per_page = '{PER_PAGE}';
|
||||||
|
var base_url = '{A_BASE_URL}';
|
||||||
|
var style_cookie = 'phpBBstyle';
|
||||||
var onload_functions = new Array();
|
var onload_functions = new Array();
|
||||||
var onunload_functions = new Array();
|
var onunload_functions = new Array();
|
||||||
var style_cookie_settings = '{A_COOKIE_SETTINGS}';
|
var style_cookie_settings = '{A_COOKIE_SETTINGS}';
|
||||||
|
@ -43,6 +48,7 @@
|
||||||
// ]]>
|
// ]]>
|
||||||
</script>
|
</script>
|
||||||
<script type="text/javascript" src="{T_TEMPLATE_PATH}/styleswitcher.js"></script>
|
<script type="text/javascript" src="{T_TEMPLATE_PATH}/styleswitcher.js"></script>
|
||||||
|
<script type="text/javascript" src="{T_TEMPLATE_PATH}/forum_fn.js"></script>
|
||||||
|
|
||||||
<link href="{T_THEME_PATH}/print.css" rel="stylesheet" type="text/css" media="print" title="printonly" />
|
<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_STYLESHEET_LINK}" rel="stylesheet" type="text/css" media="screen, projection" />
|
||||||
|
|
Loading…
Add table
Reference in a new issue