Skip to content

Commit

Permalink
fixed undefined variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Schultz committed Mar 2, 2012
1 parent 0821d68 commit c2fd5ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/phing/tasks/ext/zendguard/ZendGuardLicenseTask.php
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ protected function verifyConfiguration()

// check hardwareLocked
if (null === $this->hardwareLocked) {
throw new BuildException("Property must be defined: " . $requiredProperty);
throw new BuildException("Property must be defined: hardwareLocked");
}

// if hardwareLocked is set to true, check that Host-ID is set
Expand Down

0 comments on commit c2fd5ee

Please sign in to comment.