Changeset 17932

Show
Ignore:
Timestamp:
10/05/08 17:02:52 (2 months ago)
Author:
flack
Message:

don't lose the return value

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/midcom/org.openpsa.core/midcom/interfaces.php

    r17931 r17932  
    3333        $this->set_acl_options(); 
    3434        $this->set_workgroup_filter(); 
    35         $this->load_my_company(); 
     35        $return = $this->load_my_company(); 
    3636 
    3737        debug_pop(); 
    38         return true
     38        return $return
    3939    } 
    4040 
    4141    /** 
    4242     * Load "my company" or "owner company", the group that is the main user of this instance 
     43     * 
     44     * @return boolean Indicating success 
    4345     */ 
    4446    private function load_my_company() 
     
    7173            $GLOBALS['org.openpsa.core:owner_organization_obj'] = $my_company_object; 
    7274        } 
     75        return true; 
    7376    } 
    7477