diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-04-09 19:31:02 +0000 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-04-09 19:31:02 +0000 |
commit | 53a08aa592c61f9826da86c7b0b7f4935986cfc3 (patch) | |
tree | 90b76f2759da24aafce3d0c34205af65b38ddf04 | |
parent | 25237205619cdbd02a47535a9a7cc2882f372a8f (diff) |
Missed a closing para )
-rw-r--r-- | core/models/item.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/models/item.php b/core/models/item.php index 1ab78878..afed45f8 100644 --- a/core/models/item.php +++ b/core/models/item.php @@ -293,7 +293,7 @@ class Item_Model extends ORM_MPTT { $this->weight = $r->max_weight + 1; // Let albums have a weight of based on the largest -ve number so they come first. if ($this->is_album()) { - $this->weight = -(0x7FFFFFFF - $this->weight; + $this->weight = -(0x7FFFFFFF - $this->weight); } } } |