Skip to content

Commit 31042b3

Browse files
committed
Fix formatting of the subscription length column
1 parent 8942aad commit 31042b3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

wcfsetup/install/files/lib/system/gridView/admin/PaidSubscriptionGridView.class.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ public function render(mixed $value, DatabaseObject $row): string
8080
}
8181

8282
return \sprintf(
83-
"%s %d",
83+
"%d %s",
84+
$row->subscriptionLength,
8485
WCF::getLanguage()->get(
8586
"wcf.acp.paidSubscription.subscriptionLengthUnit." . $row->subscriptionLengthUnit
86-
),
87-
$row->subscriptionLength
87+
)
8888
);
8989
}
9090
}

0 commit comments

Comments
 (0)