mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-07-08 10:29:09 +02:00
This commit wraps up:
-Better Navbar formatting -AJAX delete confirmation -Enhanced validation feedback on admin pages
This commit is contained in:
@ -21,7 +21,11 @@ class ControllerDomainDomain extends Controller {
|
||||
if(ENABLE_SAAS == 1) {
|
||||
$this->load->model('saas/ldap');
|
||||
$this->data['ldap'] = $this->model_saas_ldap->get();
|
||||
$ldap_id = $this->request->post['ldap_id'];
|
||||
if ( isset($this->request->post['ldap_id']) ) {
|
||||
$ldap_id = $this->request->post['ldap_id'];
|
||||
} else {
|
||||
$ldap_id = 0;
|
||||
}
|
||||
}
|
||||
|
||||
$this->document->title = $this->data['text_domain'];
|
||||
|
Reference in New Issue
Block a user