|
|
@@ -834,7 +834,7 @@ def member_activity_update(request, administrator):
|
834
|
834
|
location = request.POST.get('location', '')
|
835
|
835
|
integral = int(request.POST.get('integral', 0))
|
836
|
836
|
is_slider = request.POST.get('is_slider', 0)
|
837
|
|
- slider_image_path = request.POST.get('banner_path', '') or request.POST.get('slider_image_path', '')
|
|
837
|
+ slider_image_path = request.POST.get('slider_image_path', '')
|
838
|
838
|
cover_path = request.POST.get('cover_path', '')
|
839
|
839
|
detail_image_path = request.POST.get('detail_image_path', '')
|
840
|
840
|
limit_image_num = int(request.POST.get('limit_image_num', 3))
|
|
|
@@ -896,7 +896,7 @@ def member_activity_create(request, administrator):
|
896
|
896
|
location = request.POST.get('location', '')
|
897
|
897
|
integral = int(request.POST.get('integral', 0))
|
898
|
898
|
is_slider = request.POST.get('is_slider', 0)
|
899
|
|
- slider_image_path = request.POST.get('banner_path', '') or request.POST.get('slider_image_path', '')
|
|
899
|
+ slider_image_path = request.POST.get('slider_image_path', '')
|
900
|
900
|
cover_path = request.POST.get('cover_path', '')
|
901
|
901
|
detail_image_path = request.POST.get('detail_image_path', '')
|
902
|
902
|
limit_image_num = int(request.POST.get('limit_image_num', 3))
|