Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15361121
D15644.id37700.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
959 B
Referenced Files
None
Subscribers
None
D15644.id37700.diff
View Options
diff --git a/src/applications/project/storage/PhabricatorProjectColumn.php b/src/applications/project/storage/PhabricatorProjectColumn.php
--- a/src/applications/project/storage/PhabricatorProjectColumn.php
+++ b/src/applications/project/storage/PhabricatorProjectColumn.php
@@ -170,16 +170,14 @@
// Normal columns and subproject columns go first, in a user-controlled
// order.
- // All the milestone columns go last, in reverse order (newest on the
- // left) so that you don't have to scroll across older milestones to get
- // to the newest ones.
+ // All the milestone columns go last, in their sequential order.
if (!$proxy || !$proxy->isMilestone()) {
$group = 'A';
$sequence = $this->getSequence();
} else {
$group = 'B';
- $sequence = (10000000 - $proxy->getMilestoneNumber());
+ $sequence = $proxy->getMilestoneNumber();
}
return sprintf('%s%012d', $group, $sequence);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Mar 12, 12:03 PM (3 w, 13 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7585770
Default Alt Text
D15644.id37700.diff (959 B)
Attached To
Mode
D15644: Put older milestones back on the left
Attached
Detach File
Event Timeline
Log In to Comment