Changeset 68
- Timestamp:
- 06/12/07 22:12:14 (2 years ago)
- Files:
-
- trunk/wp-infocard/pw-config.php (modified) (1 diff)
- trunk/wp-infocard/pwlib/processing/infocard-post-get-claims.php (modified) (2 diffs)
- trunk/wp-infocard/wp/audit.pw.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-infocard/pw-config.php
r66 r68 8 8 define ('PW_PLUGINPATH', '/wp-content/plugins/wp-infocard'); 9 9 define ('PW_SELECTORTRIGGER', 'xhtml' ); 10 define ('PW_MANAGEDONLY', false );10 define ('PW_MANAGEDONLY', true ); 11 11 define ('PW_VERSION', 'b2'); 12 12 define ('PW_VERSION_DATE', '17May07'); trunk/wp-infocard/pwlib/processing/infocard-post-get-claims.php
r42 r68 312 312 if (strcmp($locallyCalculatedDigest, $digestValue) != 0) 313 313 { 314 $error = "SignedInfo digest ($digestValue) does n't match calculated digest ($locallyCalculatedDigest)";314 $error = "SignedInfo digest ($digestValue) does not match calculated digest ($locallyCalculatedDigest)"; 315 315 break; 316 316 } … … 464 464 openssl_free_key($publicKeyHandle); 465 465 466 return ($error);466 return addslashes($error); 467 467 } 468 468 trunk/wp-infocard/wp/audit.pw.php
r41 r68 3 3 4 4 include_once( dirname(__FILE__) . '/../pw-config.php' ); 5 include_once( dirname(__FILE__) . '/../utils.pw.php' ); 5 6 //include_once( dirname(__FILE__) . '/../pwlib/audit.pwlib.php'); 6 7 … … 28 29 if ( $update_result == FALSE ) 29 30 { 30 InfocardUtils::printDebug("Error ".mysql_errno($update_result)."with mysql_query update (".mysql_error($update_result).")<br/>");31 pw_utils::printDebug("Error ".mysql_errno($update_result)."with mysql_query update (".mysql_error($update_result).")<br/>"); 31 32 } 32 33
