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

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4286 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2008-06-16 08:07:15 +00:00
parent dd7ad77fbd
commit ad1bd7cae2

View file

@ -578,6 +578,10 @@
$get_vars[$key] = $val;
}
/* member module중의 쪽지함/친구 관리 기능이 communication 모듈로 이전하여 하위 호환성을 위한 act값 변경 */
if($get_vars['act'] == 'dispMemberFriend') $get_vars['act'] = 'dispCommunicationFriend';
elseif($get_vars['act'] == 'dispMemberMessages') $get_vars['act'] = 'dispCommunicationMessages';
$var_count = count($get_vars);
if(!$var_count) return '';