mirror of
https://git.code.sf.net/p/seeddms/code
synced 2024-11-26 23:42:11 +00:00
set proper active pane after saving configuration
This commit is contained in:
parent
6481d230a6
commit
e91ce9d632
|
@ -72,7 +72,7 @@ if(!is_writeable($settings->_configFilePath)) {
|
|||
</ul>
|
||||
|
||||
<div class="tab-content">
|
||||
<div class="tab-pane active" id="site">
|
||||
<div class="tab-pane <?php if(!$currenttab || $currenttab == 'site') echo 'active'; ?>" id="site">
|
||||
<?php $this->contentContainerStart(); ?>
|
||||
<table class="table-condensed">
|
||||
<!--
|
||||
|
@ -255,7 +255,7 @@ if(!is_writeable($settings->_configFilePath)) {
|
|||
<?php $this->contentContainerEnd(); ?>
|
||||
</div>
|
||||
|
||||
<div class="tab-pane" id="system">
|
||||
<div class="tab-pane <?php if($currenttab == 'system') echo 'active'; ?>" id="system">
|
||||
<?php $this->contentContainerStart(); ?>
|
||||
<table class="table-condensed">
|
||||
<!--
|
||||
|
@ -433,7 +433,7 @@ if(!is_writeable($settings->_configFilePath)) {
|
|||
<?php $this->contentContainerEnd(); ?>
|
||||
</div>
|
||||
|
||||
<div class="tab-pane" id="advanced">
|
||||
<div class="tab-pane <?php if($currenttab == 'advanced') echo 'active'; ?>" id="advanced">
|
||||
<?php $this->contentContainerStart(); ?>
|
||||
<table class="table-condensed">
|
||||
<!--
|
||||
|
|
Loading…
Reference in New Issue
Block a user