|
@@ -327,6 +327,7 @@ class Custom extends Base
|
327
|
327
|
//查询排序 等级
|
328
|
328
|
$sort_order = Db::name('archives')->where('aid','=',(int)$post['level_group_name'])->value('sort_order');
|
329
|
329
|
|
|
330
|
+ //var_dump($post['addonFieldExt']);die;
|
330
|
331
|
//获取文档文件后缀
|
331
|
332
|
if(!empty($post['addonFieldExt']['down_eyou_remote'])){
|
332
|
333
|
$file = explode('.',$post['addonFieldExt']['down_eyou_remote']);
|
|
@@ -334,6 +335,12 @@ class Custom extends Base
|
334
|
335
|
}else{
|
335
|
336
|
$ext = '';
|
336
|
337
|
}
|
|
338
|
+ if(!empty($post['addonFieldExt']['down_eyou_local'])){
|
|
339
|
+ $file = explode('.',$post['addonFieldExt']['down_eyou_local']);
|
|
340
|
+ $ext = end($file);
|
|
341
|
+ }else{
|
|
342
|
+ $ext = '';
|
|
343
|
+ }
|
337
|
344
|
|
338
|
345
|
// --存储数据
|
339
|
346
|
$newData = array(
|
|
@@ -906,6 +913,12 @@ class Custom extends Base
|
906
|
913
|
$ext = '';
|
907
|
914
|
}
|
908
|
915
|
|
|
916
|
+ if(!empty($post['addonFieldExt']['down_eyou_local'])){
|
|
917
|
+ $file = explode('.',$post['addonFieldExt']['down_eyou_local']);
|
|
918
|
+ $ext = end($file);
|
|
919
|
+ }else{
|
|
920
|
+ $ext = '';
|
|
921
|
+ }
|
909
|
922
|
|
910
|
923
|
// --存储数据
|
911
|
924
|
$newData = array(
|