Skip to content

Commit

Permalink
copy/paste error fix
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.php.net/repository/pear/packages/CodeGen_PECL/trunk@234527 c90b9560-bf6c-de11-be94-00142212c4b1
  • Loading branch information
Hartmut Holzgraefe committed Apr 26, 2007
1 parent 9c4f6ba commit 1eda7f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PECL/ExtensionParser.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -1051,7 +1051,7 @@ function tagend_class_payload($attr, $data)


if (isset($attr["alloc"])) { if (isset($attr["alloc"])) {
$alloc = $this->toBool($attr["alloc"], "alloc"); $alloc = $this->toBool($attr["alloc"], "alloc");
if (PEAR::isError($value)) { if (PEAR::isError($alloc)) {
return $value; return $value;
} }
} else { } else {
Expand Down

0 comments on commit 1eda7f6

Please sign in to comment.