7 lines
164 B
PHP
7 lines
164 B
PHP
|
<?php
|
||
|
|
||
|
$state = OCP\Config::getSystemValue('ldapIgnoreNamingRules', 'doSet');
|
||
|
if($state == 'doSet'){
|
||
|
OCP\Config::setSystemValue('ldapIgnoreNamingRules', false);
|
||
|
}
|