Skip to content

Commit

Permalink
fixed #3 fixed typo 'calassname' to 'classname'
Browse files Browse the repository at this point in the history
  • Loading branch information
Joungkyun committed Jul 25, 2022
1 parent b1b2281 commit 19f532c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mysql-wrapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -486,9 +486,9 @@ function mysql_fetch_object ($result, $classname = null, $params = null) {
);
return false;
}
$r = mysqli_fetch_object ($result, $calassname, $params);
$r = mysqli_fetch_object ($result, $classname, $params);
} else
$r = mysqli_fetch_object ($result, $calassname);
$r = mysqli_fetch_object ($result, $classname);
} else
$r = mysqli_fetch_object ($result);

Expand Down

0 comments on commit 19f532c

Please sign in to comment.