mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-22 01:30:23 +08:00
Fixed test break.
This commit is contained in:
@@ -355,10 +355,10 @@ class Sort extends Object
|
||||
$definition = $this->attributes[$attribute];
|
||||
$directions = $this->getAttributeOrders();
|
||||
if (isset($directions[$attribute])) {
|
||||
$descending = !$directions[$attribute];
|
||||
$descending = $directions[$attribute] === SORT_DESC;
|
||||
unset($directions[$attribute]);
|
||||
} else {
|
||||
$descending = !empty($definition['default']);
|
||||
$descending = isset($definition['default']) && $definition['default'] === SORT_DESC;
|
||||
}
|
||||
|
||||
if ($this->enableMultiSort) {
|
||||
|
||||
Reference in New Issue
Block a user