언어선택 되돌아가기 링크 추가

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6377 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
misol 2009-05-23 14:54:52 +00:00
parent f760195fcf
commit df45bc1d00
3 changed files with 25 additions and 14 deletions

View file

@ -68,7 +68,7 @@
$url = $this->upperUrl;
printf('<do type="vnd.up" label="%s"><go href="%s"/></do>%s', $url->text, $url->url, "\n");
}
$url = getUrl('','lcm','1','sel_lang',Context::getLangType());
$url = getUrl('','lcm','1','sel_lang',Context::getLangType(),'return_uri',Context::get('current_url'));
printf('<do type="vnd.lang" label="%s"><go href="%s"/></do>%s', 'Language : '.Context::getLang('select_lang'), $url, "\n");
}
@ -79,7 +79,12 @@
// 목록등에서 일련 번호를 리턴한다
function getNo() {
return "vnd.skmn".parent::getNo();
if(Context::get('mobile_skt')==1) {
return "vnd.skmn".parent::getNo();
}
else {
return parent::getNo();
}
return $str;
}
}