mirror of
https://github.com/LDAPAccountManager/lam.git
synced 2025-10-03 17:59:21 +02:00
fixed missing conf/profiles/groups directory in debian package
commented out listGroupProfiles()
This commit is contained in:
parent
11f67e77f8
commit
7b6696e119
1 changed files with 4 additions and 2 deletions
|
@ -45,7 +45,8 @@ function getUserProfiles() {
|
||||||
|
|
||||||
// returns an array of String with all available group profiles (without .prg)
|
// returns an array of String with all available group profiles (without .prg)
|
||||||
function getGroupProfiles() {
|
function getGroupProfiles() {
|
||||||
$dir = dir(substr(__FILE__, 0, strlen(__FILE__) - 17) . "/config/profiles/groups");
|
// group profiles are not supported at this time
|
||||||
|
/* $dir = dir(substr(__FILE__, 0, strlen(__FILE__) - 17) . "/config/profiles/groups");
|
||||||
$ret = array();
|
$ret = array();
|
||||||
$pos = 0;
|
$pos = 0;
|
||||||
while ($entry = $dir->read()){
|
while ($entry = $dir->read()){
|
||||||
|
@ -56,7 +57,8 @@ function getGroupProfiles() {
|
||||||
$pos ++;
|
$pos ++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return $ret;
|
return $ret; */
|
||||||
|
return array();
|
||||||
}
|
}
|
||||||
|
|
||||||
// returns an array of String with all available host profiles (without .prh)
|
// returns an array of String with all available host profiles (without .prh)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue