mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-12-25 18:40:11 +01:00
domain ldap typo fix
This commit is contained in:
parent
98c15c4ff1
commit
da9c965413
@ -20,7 +20,7 @@ class ControllerDomainDomain extends Controller {
|
|||||||
$this->load->model('domain/domain');
|
$this->load->model('domain/domain');
|
||||||
if(ENABLE_SAAS == 1) {
|
if(ENABLE_SAAS == 1) {
|
||||||
$this->load->model('saas/ldap');
|
$this->load->model('saas/ldap');
|
||||||
$this->data['ldap'] = $this->model_saas_ldap->get();
|
$this->data['ldap'] = $this->model_saas_ldap->search();
|
||||||
if ( isset($this->request->post['ldap_id']) ) {
|
if ( isset($this->request->post['ldap_id']) ) {
|
||||||
$ldap_id = $this->request->post['ldap_id'];
|
$ldap_id = $this->request->post['ldap_id'];
|
||||||
} else {
|
} else {
|
||||||
|
@ -48,6 +48,7 @@
|
|||||||
<label class="control-label" for="ldap_id"><?php print $text_ldap; ?>:</label>
|
<label class="control-label" for="ldap_id"><?php print $text_ldap; ?>:</label>
|
||||||
<div class="controls">
|
<div class="controls">
|
||||||
<select name="ldap_id" id="ldap_id">
|
<select name="ldap_id" id="ldap_id">
|
||||||
|
<option value="0"></option>
|
||||||
<?php foreach ($ldap as $l) { ?>
|
<?php foreach ($ldap as $l) { ?>
|
||||||
<option value="<?php print $l['id']; ?>"><?php print $l['description']; ?></option>
|
<option value="<?php print $l['id']; ?>"><?php print $l['description']; ?></option>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
@ -37,6 +37,7 @@
|
|||||||
<div class="domaincell"><?php print $text_ldap; ?>:</div>
|
<div class="domaincell"><?php print $text_ldap; ?>:</div>
|
||||||
<div class="domaincell">
|
<div class="domaincell">
|
||||||
<select name="ldap_id" id="ldap_id">
|
<select name="ldap_id" id="ldap_id">
|
||||||
|
<option value="0"></option>
|
||||||
<?php foreach ($ldap as $l) { ?>
|
<?php foreach ($ldap as $l) { ?>
|
||||||
<option value="<?php print $l['id']; ?>"><?php print $l['description']; ?></option>
|
<option value="<?php print $l['id']; ?>"><?php print $l['description']; ?></option>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
Loading…
Reference in New Issue
Block a user