Code

Udpate get_printer_list in functions.inc to respect ACLs.
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 14 Jul 2008 12:39:10 +0000 (12:39 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 14 Jul 2008 12:39:10 +0000 (12:39 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@11631 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/include/functions.inc

index ada218b76e732f49f366660218a5bf33476ac4da..269a738bd8fce7005aee54ed47049bc1eb4ed118 100644 (file)
@@ -1335,8 +1335,10 @@ function get_printer_list()
 {
   global $config;
   $res = array();
+  $ui = get_userinfo();
   $data = get_list('(objectClass=gotoPrinter)',"printer",$config->current['BASE'], array('cn'), GL_SUBSEARCH);
   foreach($data as $attrs ){
+    if(!preg_match("/r/",$ui->get_permissions($data['dn'],"printer/printgeneric",""))) continue;
     $res[$attrs['cn'][0]] = $attrs['cn'][0];
   }
   return $res;