summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 29a66d0)
raw | patch | inline | side by side (parent: 29a66d0)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 27 Aug 2009 07:42:02 +0000 (07:42 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 27 Aug 2009 07:42:02 +0000 (07:42 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@14149 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/include/class_listing.inc | patch | blob | history |
index 96e63ac83521f68ce404f41256e207d447c0d81e..9bd97f74ee353dbc5170745ac7bbfbc6dacc659e 100644 (file)
var $snapshotHandler= null;
var $exporter= array();
var $exportColumns= array();
+ var $firstCall= true;
function listing($filename)
// Reset object counter
$this->objectTypeCount= array();
+ // If we call for the first time, simulate the PID
+ if($this->firstCall) {
+ $_REQUEST['PID']= $this->pid;
+ $this->firstCall= false;
+ }
+
// Do not do anything if this is not our PID or there's even
// no PID available
if(!isset($_REQUEST['PID']) || $_REQUEST['PID'] != $this->pid) {