summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: efcdba2)
raw | patch | inline | side by side (parent: efcdba2)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 27 Aug 2009 07:10:26 +0000 (07:10 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 27 Aug 2009 07:10:26 +0000 (07:10 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@14148 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/include/class_listing.inc | patch | blob | history |
index 156cc7b80ef8d44756f5f5517d45a64cd22b587d..96e63ac83521f68ce404f41256e207d447c0d81e 100644 (file)
// Reset object counter
$this->objectTypeCount= array();
- // Do not do anything if this is not our PID
- if(isset($_REQUEST['PID']) && $_REQUEST['PID'] != $this->pid) {
+ // 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) {
return;
}
function getAction()
{
- // Do not do anything if this is not our PID
- if(isset($_REQUEST['PID']) && $_REQUEST['PID'] != $this->pid) {
+ // 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) {
return;
}