新建贴吧和组织配置默认选项暂时还原。
This commit is contained in:
parent
b08f6e307a
commit
5a7f7da1f7
|
@ -14,10 +14,9 @@ class OrgSubfieldsController < ApplicationController
|
||||||
SubfieldSubdomainDir.create(:org_subfield_id => @subfield.id, :name => params[:sub_dir].downcase)
|
SubfieldSubdomainDir.create(:org_subfield_id => @subfield.id, :name => params[:sub_dir].downcase)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
#默认类型为帖子
|
@subfield.update_attributes(:field_type => params[:field_type])
|
||||||
@subfield.update_attributes(:field_type => params[:field_type]||"Post")
|
|
||||||
# admin配置的类型
|
# admin配置的类型
|
||||||
update_status_by_type(@subfield, params[:field_type]||"Post")
|
update_status_by_type(@subfield, params[:field_type])
|
||||||
else
|
else
|
||||||
@res = false
|
@res = false
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
<%if @save_flag%>
|
<%if @save_flag%>
|
||||||
//$('#new_forum_div').slideToggle();$('#create_btn').parent().slideToggle();
|
$('#new_forum_div').slideToggle();$('#create_btn').parent().slideToggle();
|
||||||
//$('#reorder_time').click();
|
$('#reorder_time').click();
|
||||||
window.location.href= "http://"+"<%= Setting.host_name%>"+"/forums/" + "<%= @forum.id%>"
|
|
||||||
<%else%>
|
<%else%>
|
||||||
$("#error").html("<%= @forum.errors.full_messages[0]%>").show();
|
$("#error").html("<%= @forum.errors.full_messages[0]%>").show();
|
||||||
<%end %>
|
<%end %>
|
|
@ -4,8 +4,6 @@
|
||||||
$("#sub_field_left_lists").html("");
|
$("#sub_field_left_lists").html("");
|
||||||
$("#sub_field_left_lists").html("<%= escape_javascript(render :partial => 'organizations/org_left_subfield_list', :locals => {:organization => @organization}) %>");
|
$("#sub_field_left_lists").html("<%= escape_javascript(render :partial => 'organizations/org_left_subfield_list', :locals => {:organization => @organization}) %>");
|
||||||
$("#org_custom_admin").html("<%= escape_javascript(render :partial => 'organizations/org_custom_admin') %>");
|
$("#org_custom_admin").html("<%= escape_javascript(render :partial => 'organizations/org_custom_admin') %>");
|
||||||
//默认选中第一个
|
|
||||||
$("input[name='field_type']").get(0).checked=true;
|
|
||||||
<% end %>
|
<% end %>
|
||||||
$("#subfield_name").val("");
|
$("#subfield_name").val("");
|
||||||
$("#sub_dir").val("");
|
$("#sub_dir").val("");
|
Loading…
Reference in New Issue