Changeset 4575
- Timestamp:
- 12/23/2016 05:27:07 PM (8 years ago)
- Location:
- sites/trunk/wordcamp.org/public_html/wp-content/mu-plugins
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/mu-plugins/0-logger.php
r4356 r4575 53 53 */ 54 54 function redact_keys( & $data ) { 55 $redacted_keys = array( 'Authorization', 'password', 'user_pass' );55 $redacted_keys = array( 'Authorization', 'password', 'user_pass', 'key', 'apikey', 'api_key' ); 56 56 $redacted_keys = array_map( 'strtolower', $redacted_keys ); // to avoid human error 57 57 -
sites/trunk/wordcamp.org/public_html/wp-content/mu-plugins/helper-functions.php
r4574 r4575 228 228 * @todo Add support for wp_remote_post() too 229 229 * @todo Remove this if https://github.com/rmccue/Requests/issues/222 is implemented 230 * @todo maybe `set_time_limit( absint( ini_get( 'max_execution_time' ) ) + $retry_after );` before sleep()'ing to 231 * avoid php timeout 230 232 * 231 233 * @param string $request_url
Note: See TracChangeset
for help on using the changeset viewer.