Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYPC
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
2
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
Rock Zhang
9 years ago
Commit
ffc3f72459c5c268e1960a517f97cb60af11a5ef
1 parent
21aeeaf8
修复品牌brand_alif未定义时导致的错误
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
library/Plugin/DataProcess/ListProcess.php
library/Plugin/DataProcess/ListProcess.php
View file @
ffc3f72
...
...
@@ -313,7 +313,7 @@ class ListProcess
{
$fieldArr
=
array
();
foreach
(
$array
as
$k
=>
$v
)
{
$fieldArr
[
$k
]
=
$v
[
$field
]
;
$fieldArr
[
$k
]
=
isset
(
$v
[
$field
])
?
$v
[
$field
]
:
''
;
}
$sort
=
$desc
==
false
?
SORT_ASC
:
SORT_DESC
;
array_multisort
(
$fieldArr
,
$sort
,
$array
);
...
...
Please
register
or
login
to post a comment