Changeset 16069

Show
Ignore:
Timestamp:
04/11/08 15:35:50 (5 months ago)
Author:
rambo
Message:

this method should not actually be needed anymore, for now just keeping it from messing with cache by unneccessary session usage

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/MidCOM_2_8/midcom.helper.datamanager2/schema.php

    r14808 r16069  
    577577     function register_to_session($guid) 
    578578     { 
     579        $key = $this->name .  $guid; 
     580        // Seems we do not need this anymore, but return key still 
     581        return $key; 
     582 
    579583        $session =& $_MIDCOM->get_service('session'); 
    580         $key = $this->name .  $guid; 
    581  
    582584        $session->set('midcom.helper.datamanager2', $key, $this->_raw_schema); 
    583585        return $key;