Changeset 17934
- Timestamp:
- 10/05/08 20:48:00 (2 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/midcom/org.openpsa.core/config/config.inc
r4481 r17934 1 1 'default_workgroup_filter' => 'all', 2 2 'owner_organization' => null, // Set to GUID of org_openpsa_organization 3 'auto_init' => true, trunk/midcom/org.openpsa.invoices/handler/list.php
r17927 r17934 23 23 { 24 24 // Locate Contacts node for linking 25 $this->_request_data['contacts_node'] = midcom_helper_find_node_by_component('org.openpsa.contacts'); 25 $structure = new org_openpsa_core_structure(); 26 $this->_request_data['contacts_url'] = $structure->get_node_url('org.openpsa.contacts'); 26 27 } 27 28 trunk/midcom/org.openpsa.invoices/style/show-list-item.php
r17871 r17934 23 23 if ($data['customer']) 24 24 { 25 if ($data['contacts_ node'])25 if ($data['contacts_url']) 26 26 { 27 echo "<a href=\"{$data['contacts_ node'][MIDCOM_NAV_FULLURL]}group/{$data['customer']->guid}/\">{$data['customer']->official}</a>";27 echo "<a href=\"{$data['contacts_url']}group/{$data['customer']->guid}/\">{$data['customer']->official}</a>"; 28 28 } 29 29 else
