mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-12 06:18:52 +00:00
git-svn-id: file:///svn/phpbb/trunk@7861 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
2d5298e8e1
commit
49e78aa98c
3 changed files with 7 additions and 0 deletions
|
@ -202,6 +202,7 @@ p a {
|
||||||
<li>[Fix] Make the window showing file differences a little wider (Bug #13157)</li>
|
<li>[Fix] Make the window showing file differences a little wider (Bug #13157)</li>
|
||||||
<li>[Fix] Preserve preview style on search form (Bug #13205)</li>
|
<li>[Fix] Preserve preview style on search form (Bug #13205)</li>
|
||||||
<li>[Fix] Place attachment filename in new line in posting editor (Bug #9726)</li>
|
<li>[Fix] Place attachment filename in new line in posting editor (Bug #9726)</li>
|
||||||
|
<li>[Fix] Don't allow caching to occur in the update sequence (Bug #13207)</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
|
|
@ -225,6 +225,9 @@ $config = array(
|
||||||
$template->set_custom_template('../adm/style', 'admin');
|
$template->set_custom_template('../adm/style', 'admin');
|
||||||
$template->assign_var('T_TEMPLATE_PATH', '../adm/style');
|
$template->assign_var('T_TEMPLATE_PATH', '../adm/style');
|
||||||
|
|
||||||
|
// the acp template is never stored in the database
|
||||||
|
$user->theme['template_storedb'] = false;
|
||||||
|
|
||||||
$install = new module();
|
$install = new module();
|
||||||
|
|
||||||
$install->create('install', "index.$phpEx", $mode, $sub);
|
$install->create('install', "index.$phpEx", $mode, $sub);
|
||||||
|
|
|
@ -126,6 +126,9 @@ class install_update extends module
|
||||||
// Set custom template again. ;)
|
// Set custom template again. ;)
|
||||||
$template->set_custom_template('../adm/style', 'admin');
|
$template->set_custom_template('../adm/style', 'admin');
|
||||||
|
|
||||||
|
// still, the acp template is never stored in the database
|
||||||
|
$user->theme['template_storedb'] = false;
|
||||||
|
|
||||||
// Get current and latest version
|
// Get current and latest version
|
||||||
if (($latest_version = $cache->get('_version_info')) === false)
|
if (($latest_version = $cache->get('_version_info')) === false)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue