Page MenuHomePhabricator

Drop the five(!) deprecated timestamp values from the Notifications API response
Open, Needs TriagePublic

Description

'timestamp' => [
    // ISO 8601 is __//supposed//__ to be the *only* format used for
    // date output, but back-compat...
    'utciso8601' => $utcTimestampIso8601,

    // UTC timestamp in UNIX format used for loading more notification
    'utcunix' => $utcTimestampUnix,
    'unix' => self::getUserLocalTime( $user, $timestamp, TS_UNIX ),
    'utcmw' => $utcTimestampMW,
    'mw' => $timestampMw,
    'date' => $date
],