Skip to content

Commit

Permalink
Implemented bug fix in msgPatronStatusRequest submitted by Bob Wicksall
Browse files Browse the repository at this point in the history
  • Loading branch information
cap60552 committed Apr 11, 2008
1 parent ea8ffa3 commit f1bbd95
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sip2.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
*/

/**
* 2008.03.15
* There is a lot to do yet. While this version does indeed work, not all messages have been tested.
* 2008.04.11
* Encorported a bug fix submitted by Bob Wicksall
*
* TODO
* - Clean up variable names, check for consistancy
Expand Down Expand Up @@ -109,8 +109,8 @@ function msgPatronStatusRequest() {
$this->_addFixedOption($this->_datestamp(), 18);
$this->_addVarOption('AO',$this->AO);
$this->_addVarOption('AA',$this->patron);
$this->_addVarOption('AC',$this->AC, true);
$this->_addVarOption('AD',$this->patronpwd, true);
$this->_addVarOption('AC',$this->AC);
$this->_addVarOption('AD',$this->patronpwd);
return $this->_returnMessage();
}

Expand Down

0 comments on commit f1bbd95

Please sign in to comment.