~ubuntu-branches/ubuntu/trusty/ldap-account-manager/trusty

« back to all changes in this revision

Viewing changes to templates/3rdParty/pla/lib/export_functions.php

  • Committer: Package Import Robot
  • Author(s): Roland Gruber
  • Date: 2012-03-03 21:41:05 UTC
  • mfrom: (4.1.17 sid)
  • Revision ID: package-import@ubuntu.com-20120303214105-h8va1xnn4u96g0rz
Tags: 3.6-2
Fix "Multiple vulnerabilities"
Replace special characters in HTML output. (Closes: #661904)

Show diffs side-by-side

added added

removed removed

Lines of Context:
318
318
                }
319
319
 
320
320
                if ($this->compress)
321
 
                        echo gzencode($output);
 
321
                        return gzencode($output);
322
322
                else
323
 
                        echo $output;
 
323
                        return $output;
324
324
        }
325
325
 
326
326
        /**
422
422
                $output .= sprintf('</dsml>%s',$this->br);
423
423
 
424
424
                if ($this->compress)
425
 
                        echo gzencode($output);
 
425
                        return gzencode($output);
426
426
                else
427
 
                        echo $output;
 
427
                        return $output;
428
428
        }
429
429
}
430
430
 
500
500
                }
501
501
 
502
502
                if ($this->compress)
503
 
                        echo gzencode($output);
 
503
                        return gzencode($output);
504
504
                else
505
 
                        echo $output;
 
505
                        return $output;
506
506
        }
507
507
 
508
508
        /**
627
627
                }
628
628
 
629
629
                if ($this->compress)
630
 
                        echo gzencode($output);
 
630
                        return gzencode($output);
631
631
                else
632
 
                        echo $output;
 
632
                        return $output;
633
633
        }
634
634
}
635
635
?>