Changeset 11947
- Timestamp:
- 07/07/2022 06:26:40 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/theme-directory/lib/class-exec-with-logging.php
r11299 r11947 10 10 11 11 /** 12 * Execute a shell process, same behaviour as `exec()` but with PHP Warnings/Notices generated on errors. 12 * Execute a shell process, same behavior as `exec()` but with PHP Warnings/Notices generated on errors. 13 * 14 * The en_US.UTF-8 locale is forced to allow for commit messages to contain UTF8 characters. 13 15 * 14 16 * @param string $command Command to execute. Escape it. … … 26 28 2 => [ 'pipe', 'w' ], // STDERR 27 29 ], 28 $pipes 30 $pipes, 31 null, 32 [ 33 'LANG' => 'en_US.UTF-8', 34 'LC_CTYPE' => 'en_US.UTF-8', 35 ] 29 36 ); 30 37
Note: See TracChangeset
for help on using the changeset viewer.