Changeset 17932
- Timestamp:
- 10/05/08 17:02:52 (2 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/midcom/org.openpsa.core/midcom/interfaces.php
r17931 r17932 33 33 $this->set_acl_options(); 34 34 $this->set_workgroup_filter(); 35 $ this->load_my_company();35 $return = $this->load_my_company(); 36 36 37 37 debug_pop(); 38 return true;38 return $return; 39 39 } 40 40 41 41 /** 42 42 * Load "my company" or "owner company", the group that is the main user of this instance 43 * 44 * @return boolean Indicating success 43 45 */ 44 46 private function load_my_company() … … 71 73 $GLOBALS['org.openpsa.core:owner_organization_obj'] = $my_company_object; 72 74 } 75 return true; 73 76 } 74 77
