~ubuntu-branches/ubuntu/utopic/phpldapadmin/utopic

« back to all changes in this revision

Viewing changes to lib/export_functions.php

  • Committer: Package Import Robot
  • Author(s): Logan Rosen
  • Date: 2012-12-02 13:34:58 UTC
  • Revision ID: package-import@ubuntu.com-20121202133458-rey798g3bm0o8t7g
Tags: 1.2.2-5ubuntu1
* Merge from Debian unstable. Remaining changes:
  - Merged call to dh_install to install debian/additional-templates/*
  - added groupOfNames.xml
  - Adds php_value memory_limit 32M to the apache.conf.

Show diffs side-by-side

added added

removed removed

Lines of Context:
324
324
                }
325
325
 
326
326
                if ($this->compress)
327
 
                        echo gzencode($output);
 
327
                        return gzencode($output);
328
328
                else
329
 
                        echo $output;
 
329
                        return $output;
330
330
        }
331
331
 
332
332
        /**
428
428
                $output .= sprintf('</dsml>%s',$this->br);
429
429
 
430
430
                if ($this->compress)
431
 
                        echo gzencode($output);
 
431
                        return gzencode($output);
432
432
                else
433
 
                        echo $output;
 
433
                        return $output;
434
434
        }
435
435
}
436
436
 
506
506
                }
507
507
 
508
508
                if ($this->compress)
509
 
                        echo gzencode($output);
 
509
                        return gzencode($output);
510
510
                else
511
 
                        echo $output;
 
511
                        return $output;
512
512
        }
513
513
 
514
514
        /**
633
633
                }
634
634
 
635
635
                if ($this->compress)
636
 
                        echo gzencode($output);
 
636
                        return gzencode($output);
637
637
                else
638
 
                        echo $output;
 
638
                        return $output;
639
639
        }
640
640
}
641
641
?>