mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1815 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
6a37b0cf40
commit
996fc97b7e
2 changed files with 3 additions and 1 deletions
|
|
@ -453,6 +453,7 @@ function chkMemberMenu(evt) {
|
|||
var params = new Array();
|
||||
params["member_srl"] = member_srl;
|
||||
params["cur_mid"] = mid;
|
||||
params["cur_act"] = current_url.getQuery('act');
|
||||
params["page_x"] = e.pageX;
|
||||
params["page_y"] = e.pageY;
|
||||
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
$member_srl = Context::get('member_srl');
|
||||
$mid = Context::get('cur_mid');
|
||||
$logged_info = Context::get('logged_info');
|
||||
$act = Context::get('cur_act');
|
||||
|
||||
// 자신의 아이디를 클릭한 경우
|
||||
if($member_srl == $logged_info->member_srl) {
|
||||
|
|
@ -52,7 +53,7 @@
|
|||
$menu_list[] = sprintf('%s,%s,move_url(\'%s\')', Context::getRequestUri().'/modules/member/tpl/images/icon_view_info.gif', $menu_str, $menu_url);
|
||||
|
||||
// 게시판이나 블로그등일 경우는 특별 옵션 지정
|
||||
if($mid && strpos('Member', Context::get('act')<1)) {
|
||||
if($mid && !ereg('Member', $act)) {
|
||||
// 아이디로 검색
|
||||
$menu_str = Context::getLang('cmd_view_own_document');
|
||||
$menu_url = sprintf('./?mid=%s&search_target=user_id&search_keyword=%s', $mid, $user_id);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue