Changeset 4286 for sandbox

Show
Ignore:
Timestamp:
06/16/2008 05:07:15 PM (3 months ago)
Author:
zero
Message:

member모듈중 쪽지/친구 관리를 communication 모듈로 이동함에 따라 기존의 action중 이름이 변경된 것에 대해 하위호환성을 위해 변경 루틴 추가

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • sandbox/classes/context/Context.class.php

    r4282 r4286  
    578578                $get_vars[$key] = $val; 
    579579            } 
     580 
     581            /* member module중의 쪽지함/친구 관리 기능이 communication 모듈로 이전하여 하위 호환성을 위한 act값 변경 */ 
     582            if($get_vars['act'] == 'dispMemberFriend') $get_vars['act'] = 'dispCommunicationFriend'; 
     583            elseif($get_vars['act'] == 'dispMemberMessages') $get_vars['act'] = 'dispCommunicationMessages'; 
    580584 
    581585            $var_count = count($get_vars);