X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=include%2Fclass_ldap.inc;h=1e086ecb5b2486cc7f47ece760c23cccc8c01dcb;hb=d2a7f50083180fccb855c116a0f16cbca2636f62;hp=7abac71be2ce929979d77759fee04156c60f6fae;hpb=e6d041e81418bdcc1bbc3e125b4474ddc215d4e2;p=gosa.git diff --git a/include/class_ldap.inc b/include/class_ldap.inc index 7abac71be..1e086ecb5 100644 --- a/include/class_ldap.inc +++ b/include/class_ldap.inc @@ -1217,6 +1217,19 @@ class LDAP{ } } } + + /* added by Guido Serra aka Zeph */ + function getCn($dn){ + $simple= split(",", $dn); + + foreach($simple as $piece) { + $partial= split("=", $piece); + + if($partial[0] == "cn"){ + return $partial[1]; + } + } + } } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: