#18199703 : add module_selector for start_module (allowing administrator to choose start module among virtual sites' modules)

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6718 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
haneul 2009-08-03 02:25:06 +00:00
parent 17e397c2c4
commit 43bb8abadf
3 changed files with 11 additions and 21 deletions

View file

@ -49,3 +49,10 @@ jQuery(function(){
function doAdminLogout() {
exec_xml('admin','procAdminLogout',new Array(), function() { location.reload(); });
}
function insertSelectedModule(id, module_srl, mid, browser_title) {
var obj= xGetElementById('_'+id);
var sObj = xGetElementById(id);
sObj.value = module_srl;
obj.value = browser_title+' ('+mid+')';
}