Index: trunk/extensions/DonationInterface/payflowpro_gateway/payflowpro_gateway.body.php |
— | — | @@ -9,7 +9,7 @@ |
10 | 10 | * 'review', 'reject'. These values can be set during |
11 | 11 | * data processing validation, for instance. |
12 | 12 | * |
13 | | - * Hooks are exposed to handle the differet actions. |
| 13 | + * Hooks are exposed to handle the different actions. |
14 | 14 | * |
15 | 15 | * Defaults to 'process'. |
16 | 16 | * @var string |
Index: trunk/extensions/DonationInterface/payflowpro_gateway/extras/minfraud/minfraud.php |
— | — | @@ -132,7 +132,7 @@ |
133 | 133 | } |
134 | 134 | } |
135 | 135 | } else { |
136 | | - // log potential tamporing |
| 136 | + // log potential tampering |
137 | 137 | if ( $this->log_fh ) $this->log( $data[ 'contribution_tracking_id'], 'Data hash/action mismatch' ); |
138 | 138 | } |
139 | 139 | } |
Index: trunk/extensions/DonationInterface/payflowpro_gateway/extras/extras.php |
— | — | @@ -1,6 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
4 | | - * An abstract class for payflowprog gateway 'extras' |
| 4 | + * An abstract class for payflowpro gateway 'extras' |
5 | 5 | * |
6 | 6 | * To enable logging: |
7 | 7 | * $wgPayflowGatewayLog = '<path to log file>'; |
— | — | @@ -23,7 +23,7 @@ |
24 | 24 | } |
25 | 25 | |
26 | 26 | /** |
27 | | - * Prepared a log file |
| 27 | + * Prepare a log file |
28 | 28 | * |
29 | 29 | * @param string path to log file |
30 | 30 | * @return resource Pointer for the log file |
— | — | @@ -76,7 +76,7 @@ |
77 | 77 | } |
78 | 78 | |
79 | 79 | /** |
80 | | - * Cloase the open log file handler if it's open |
| 80 | + * Close the open log file handler if it's open |
81 | 81 | */ |
82 | 82 | public function __destruct() { |
83 | 83 | if ( $this->log_fh ) fclose( $this->log_fh ); |