process_form.inc
上传用户:xiao730204
上传日期:2007-01-04
资源大小:141k
文件大小:1k
- <?php
- $canidate_obj = new User_Theme();
- $canidate_obj->user_id = $user_obj->user_id;
- $canidate_obj->theme_name = $user_theme;
- $ret_vals = $user_theme_db->Get( $user_obj->user_id );
- if ( $ret_vals[ 0 ] == 1 ) {
- $user_theme_db->Modify( $canidate_obj );
- } else {
- $user_theme_db->Add( $canidate_obj );
- }
- $user_theme_obj = $canidate_obj;
- include( './themes/' . $user_theme_obj->theme_name . '/main.inc' );
- include( './themes/common/main.inc' );
- include( './prometheus/templates/theme/main.inc' );
- ?>