Skip to content
This repository was archived by the owner on Dec 17, 2024. It is now read-only.

Commit

Permalink
Merge pull request #32 from pstast/patch-1
Browse files Browse the repository at this point in the history
Proper initialization of $ret in getCode()
  • Loading branch information
t0k4rt authored Nov 2, 2016
2 parents e70d6a6 + 8ddb3b7 commit d213c48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qrencode.php
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public function init(array $spec)
//----------------------------------------------------------------------
public function getCode()
{
$ret;
$ret = NULL;

if($this->count < $this->dataLength) {
$row = $this->count % $this->blocks;
Expand Down

0 comments on commit d213c48

Please sign in to comment.