mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-07-15 08:58:10 +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>
|
</ul>
|
||||||
|
|
||||||
<div class="tab-content">
|
<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(); ?>
|
<?php $this->contentContainerStart(); ?>
|
||||||
<table class="table-condensed">
|
<table class="table-condensed">
|
||||||
<!--
|
<!--
|
||||||
|
@ -255,7 +255,7 @@ if(!is_writeable($settings->_configFilePath)) {
|
||||||
<?php $this->contentContainerEnd(); ?>
|
<?php $this->contentContainerEnd(); ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="tab-pane" id="system">
|
<div class="tab-pane <?php if($currenttab == 'system') echo 'active'; ?>" id="system">
|
||||||
<?php $this->contentContainerStart(); ?>
|
<?php $this->contentContainerStart(); ?>
|
||||||
<table class="table-condensed">
|
<table class="table-condensed">
|
||||||
<!--
|
<!--
|
||||||
|
@ -433,7 +433,7 @@ if(!is_writeable($settings->_configFilePath)) {
|
||||||
<?php $this->contentContainerEnd(); ?>
|
<?php $this->contentContainerEnd(); ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="tab-pane" id="advanced">
|
<div class="tab-pane <?php if($currenttab == 'advanced') echo 'active'; ?>" id="advanced">
|
||||||
<?php $this->contentContainerStart(); ?>
|
<?php $this->contentContainerStart(); ?>
|
||||||
<table class="table-condensed">
|
<table class="table-condensed">
|
||||||
<!--
|
<!--
|
||||||
|
|
Loading…
Reference in New Issue
Block a user