Browse Source

fixed test break.

tags/2.0.0-beta
Qiang Xue 11 years ago
parent
commit
dd97c002a6
  1. 2
      framework/yii/data/Sort.php

2
framework/yii/data/Sort.php

@ -355,7 +355,7 @@ class Sort extends Object
$definition = $this->attributes[$attribute];
$directions = $this->getAttributeOrders();
if (isset($directions[$attribute])) {
$descending = $directions[$attribute] === SORT_DESC;
$descending = $directions[$attribute] !== SORT_DESC;
unset($directions[$attribute]);
} else {
$descending = isset($definition['default']) && $definition['default'] === SORT_DESC;

Loading…
Cancel
Save