mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-12-25 07:40:12 +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');
|
||||
if(ENABLE_SAAS == 1) {
|
||||
$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']) ) {
|
||||
$ldap_id = $this->request->post['ldap_id'];
|
||||
} else {
|
||||
|
@ -48,6 +48,7 @@
|
||||
<label class="control-label" for="ldap_id"><?php print $text_ldap; ?>:</label>
|
||||
<div class="controls">
|
||||
<select name="ldap_id" id="ldap_id">
|
||||
<option value="0"></option>
|
||||
<?php foreach ($ldap as $l) { ?>
|
||||
<option value="<?php print $l['id']; ?>"><?php print $l['description']; ?></option>
|
||||
<?php } ?>
|
||||
|
@ -37,6 +37,7 @@
|
||||
<div class="domaincell"><?php print $text_ldap; ?>:</div>
|
||||
<div class="domaincell">
|
||||
<select name="ldap_id" id="ldap_id">
|
||||
<option value="0"></option>
|
||||
<?php foreach ($ldap as $l) { ?>
|
||||
<option value="<?php print $l['id']; ?>"><?php print $l['description']; ?></option>
|
||||
<?php } ?>
|
||||
|
Loading…
Reference in New Issue
Block a user