Changeset 14570 for sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/shortcodes/class-upload-handler.php
- Timestamp:
- 10/24/2025 07:22:51 AM (6 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/shortcodes/class-upload-handler.php
r14567 r14570 770 770 $debug = ''; 771 771 if ( $result['output'] || $result['stderr'] ) { 772 $debug = trim( "{$result['output']}\n===\n{$result['stderr']}", "\n=" ); 772 $output = is_string( $result['output'] ) ? $result['output'] : implode( "\n", (array) $result['output'] ); 773 $debug = trim( "{$output}\n===\n{$result['stderr']}", "\n=" ); 773 774 $debug = "\n```{$debug}```"; 774 775 }
Note: See TracChangeset
for help on using the changeset viewer.