Commit 6442923c by 冷斌

update

parent 57481c79
...@@ -183,7 +183,9 @@ class ChargeController extends AdminbaseController { ...@@ -183,7 +183,9 @@ class ChargeController extends AdminbaseController {
$lv = '平台'; $lv = '平台';
if (!empty($proxy[0]['path'])) { if (!empty($proxy[0]['path'])) {
$uuid = array_unshift(array_filter(explode(';', $proxy[0]['path']))); $path2 = array_filter(explode(';', $proxy[0]['path']));
array_unshift($path2);
$uuid = array_unshift($path2);
$uuinfo = getUserInfo($uuid); $uuinfo = getUserInfo($uuid);
$lv = $uuinfo['user_nicename']; $lv = $uuinfo['user_nicename'];
if ($lv === '用户不存在') { if ($lv === '用户不存在') {
...@@ -453,7 +455,9 @@ class ChargeController extends AdminbaseController { ...@@ -453,7 +455,9 @@ class ChargeController extends AdminbaseController {
$lv = '平台'; $lv = '平台';
if (!empty($proxy[0]['path'])) { if (!empty($proxy[0]['path'])) {
$uuid = array_unshift(array_filter(explode(';', $proxy[0]['path']))); $path2 = array_filter(explode(';', $proxy[0]['path']));
array_unshift($path2);
$uuid = array_unshift($path2);
$uuinfo = getUserInfo($uuid); $uuinfo = getUserInfo($uuid);
$lv = $uuinfo['user_nicename']; $lv = $uuinfo['user_nicename'];
if ($lv === '用户不存在') { if ($lv === '用户不存在') {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment