This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## | |
# Apache .htaccess template | |
## | |
## Protect files and directories from prying eyes. | |
<FilesMatch "\.(make|test|md|po|sh|.*sql|.*bson|tpl(\.php)?|svn-base)$|^(code-style\.pl|Entries.*|Repository|Root|Tag|Template|all-wcprops|entries|format)$"> | |
Order allow,deny | |
</FilesMatch> | |
## Don't show directory listings for URLs which map to a directory. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function curl_setopt_custom_postfields($ch, $postfields, $headers = null) { | |
$algos = hash_algos(); | |
$hashAlgo = null; | |
foreach ( array('sha1', 'md5') as $preferred ) { | |
if ( in_array($preferred, $algos) ) { | |
$hashAlgo = $preferred; | |
break; | |
} | |
} |
NewerOlder