~ubuntu-branches/ubuntu/precise/gosa/precise

« back to all changes in this revision

Viewing changes to include/class_CopyPasteHandler.inc

  • Committer: Bazaar Package Importer
  • Author(s): Benoit Mortier
  • Date: 2009-05-29 18:23:00 UTC
  • mfrom: (1.2.8 upstream) (7.2.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090529182300-9z5k9r1e9djshrus
Tags: 2.5.19-1
* New upstream release
* Added basque debconf template (Closes: #502289)
* Added italian debconf template (Closes: #502465)
* Added japanese debconf template (Closes: #512979)
* Added finish debconf template (Closes: #501937)
* Added russian debconf template (Closes: #502888)
* Missing attributes in group ACL menu (Closes: #528179)
* Added test in apache for php5 apache module presence (Closes: #523461)
* Corrected bashism in mailqueue script (Closes: #530093)
* Cleaned debian packaging
* Updated German Translation.
* Applied patch to allow selecting the primary Group when copying users
* Added a section how to report a bug
* Added Benoit Mortier as uploader

Show diffs side-by-side

added added

removed removed

Lines of Context:
202
202
  function check()
203
203
  {
204
204
    $ret = array();
205
 
    foreach($this->     current->by_object as $obj){
 
205
    foreach($this->     current->by_object as $key => $obj){
206
206
      if($obj->is_account){
207
 
        $ret = array_merge($ret , $obj->check());
 
207
        $ret = array_merge($ret , $this->current->by_object[$key]->check());
208
208
      }
209
209
    }
210
210
    return($ret);