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

Commit

Permalink
Merge pull request #37 from neok/variable_name_fix
Browse files Browse the repository at this point in the history
typo fix
  • Loading branch information
t0k4rt authored Nov 2, 2016
2 parents f9bf9e7 + b25b3a1 commit c9d3eda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion phpqrcode.php
Original file line number Diff line number Diff line change
Expand Up @@ -3077,7 +3077,7 @@ public function encodeInput(QRinput $input)
//----------------------------------------------------------------------
public function encodeString8bit($string, $version, $level)
{
if(string == NULL) {
if($string == NULL) {
throw new Exception('empty string!');
return NULL;
}
Expand Down
2 changes: 1 addition & 1 deletion qrencode.php
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ public function encodeInput(QRinput $input)
//----------------------------------------------------------------------
public function encodeString8bit($string, $version, $level)
{
if(string == NULL) {
if($string == NULL) {
throw new Exception('empty string!');
return NULL;
}
Expand Down

0 comments on commit c9d3eda

Please sign in to comment.