@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.

Quickly fix phpqrcode syntax

Summary: phpqrcode has some old looking php syntax. Fix it quickly since it's one line.

Test Plan:
Before this patch, went to add a TOTP token, saw the error about the undefined variable.
After this patch, successfully added a TOTP token, and used it.

Reviewers: avivey, epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin

Maniphest Tasks: T9300

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

authored by

Brian Smith and committed by
epriestley
9692c1f2 bce0698a

+1 -1
+1 -1
externals/phpqrcode/phpqrcode.php
··· 2937 2937 //---------------------------------------------------------------------- 2938 2938 public function getCode() 2939 2939 { 2940 - $ret; 2940 + $ret = null; 2941 2941 2942 2942 if($this->count < $this->dataLength) { 2943 2943 $row = $this->count % $this->blocks;