@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add card expiration information to Phortune cart screen

Summary:
See PHI689. It can be difficult to distinguish between cards with the same number but different expiration dates (common when the bank sends you a new card).

For now, show the expiration date on the cart checkout screen.

Test Plan: Viewed a cart checkout screen with multiple cards, saw expiration dates.

Reviewers: amckinley

Differential Revision: https://secure.phabricator.com/D19462

+5 -1
+5 -1
src/applications/phortune/storage/PhortunePaymentMethod.php
··· 83 83 84 84 public function getDescription() { 85 85 $provider = $this->buildPaymentProvider(); 86 - return $provider->getPaymentMethodProviderDescription(); 86 + 87 + $expires = $this->getDisplayExpires(); 88 + $description = $provider->getPaymentMethodProviderDescription(); 89 + 90 + return pht("Expires %s \xC2\xB7 %s", $expires, $description); 87 91 } 88 92 89 93 public function getMetadataValue($key, $default = null) {