changed: the way how raw template is set
option for setting raw template from 'emacs' function has been removed now we have index_raw.html template and it can be set from 'template' function removed: template index_fullscreen.html changed: some work in miscspace (changed: space_list_tab, space_list_tab_value and space_list_tab_has_next) fixed: main index template could not be set through 'template' function git-svn-id: svn://ttmath.org/publicrep/winix/trunk@1039 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
@@ -79,7 +79,7 @@ void env_tab_value(Info & i)
|
||||
User * puser = cur->session->puser;
|
||||
|
||||
if( puser )
|
||||
space_list_tab_value(i, puser->env);
|
||||
space_list_tab_value(i, puser->env, L"env_tab");
|
||||
}
|
||||
|
||||
|
||||
@@ -89,7 +89,7 @@ void env_tab_has_next(Info & i)
|
||||
User * puser = cur->session->puser;
|
||||
|
||||
if( puser )
|
||||
space_list_tab_has_next(i, puser->env);
|
||||
space_list_tab_has_next(i, puser->env, L"env_tab");
|
||||
}
|
||||
|
||||
|
||||
@@ -132,7 +132,7 @@ void env_admin_tab_value(Info & i)
|
||||
User * puser = cur->session->puser;
|
||||
|
||||
if( puser )
|
||||
space_list_tab_value(i, puser->aenv);
|
||||
space_list_tab_value(i, puser->aenv, L"env_admin_tab");
|
||||
}
|
||||
|
||||
|
||||
@@ -142,7 +142,7 @@ void env_admin_tab_has_next(Info & i)
|
||||
User * puser = cur->session->puser;
|
||||
|
||||
if( puser )
|
||||
space_list_tab_has_next(i, puser->aenv);
|
||||
space_list_tab_has_next(i, puser->aenv, L"env_admin_tab");
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user