Skip to content

Commit 6e194a9

Browse files
committed
Merge pull request facebookarchive#78 from alixandru/master
Use OS-specific directory separator instead of hard-coded forward slash
2 parents 21defa7 + 49c322b commit 6e194a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/base_facebook.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -962,7 +962,7 @@ protected function makeRequest($url, $params, $ch=null) {
962962
self::errorLog('Invalid or no certificate authority found, '.
963963
'using bundled information');
964964
curl_setopt($ch, CURLOPT_CAINFO,
965-
dirname(__FILE__) . '/fb_ca_chain_bundle.crt');
965+
dirname(__FILE__) . DIRECTORY_SEPARATOR . 'fb_ca_chain_bundle.crt');
966966
$result = curl_exec($ch);
967967
}
968968

0 commit comments

Comments
 (0)