Skip to content
This repository was archived by the owner on Jul 24, 2023. It is now read-only.

Commit 453d94f

Browse files
Kevin Sandersmarcoceppi
authored andcommitted
Fixed bad variable.
1 parent 99d2417 commit 453d94f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/consumer/common.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ function &getStore() {
5858
if (strpos(PHP_OS, 'WIN') === 0) {
5959
$store_path = $_ENV['TMP'];
6060
if (!isset($store_path)) {
61-
$dir = 'C:\Windows\Temp';
61+
$store_path = 'C:\Windows\Temp';
6262
}
6363
}
6464
else {
@@ -113,4 +113,4 @@ function getTrustRoot() {
113113
dirname($_SERVER['PHP_SELF']));
114114
}
115115

116-
?>
116+
?>

0 commit comments

Comments
 (0)